我知道它的新手问题。我有两个来自同一班级的名单。
List<A> list1 = new List<A>();
List<A> list2 = new List<A>();
如何以编程方式将list1
的商品添加到list2
?我需要将每个项目逐个添加到list2
。
答案 0 :(得分:0)
You can do like this NOT LIST USING ANY CHILD CLASS LIKE ARRYLIST.
List<Your class name> list1 = new ArrayList();
List<Your class name> list2 = new ArrayList();
// populate lists here
list1.addAll(list2) // will add all items of list2 in list 1
答案 1 :(得分:0)
List<Model> arrList1 = new ArrayList();
List<Model> arrList2 = new ArrayList(arrList1); // it will copy all records of arrList1 to arrList2.
希望它对你有用。