. Source does not fit in dest
事由: Collections.copy(products, orderProductList);
原因: dest products 的size 为0
解决:
List<Object> products
=
new
ArrayList<Object (Arrays.asList(
new
Object[orderProductList
.size()]));
博客内容仅提及'Source does not fit in dest',未明确具体指向,但标签为移动开发,推测可能是移动开发中源数据与目标不匹配的问题。

819

被折叠的 条评论
为什么被折叠?



