在java中将一个列表添加到另一个列表?

时间:2012-06-30 10:44:35

标签: java

我有以下java代码。

List<SomePojo> list = new ArrayList<SomePojo>();
//add 100 SomePojo objects to list.

现在列表有100个对象。

如果我再创建一个实例,如下所示:

List<SomePojo> anotherList = new ArrayList<SomePojo>();
anotherList .addAll(list);

谢谢!

5 个答案:

答案 0 :(得分:31)

对象在内存中只有一次。您对list的第一次添加只会添加对象引用。

anotherList.addAll也会添加引用。所以内存中只有100个对象。

如果您通过添加/删除元素更改list,则anotherList将不会更改。但是如果您更改list中的任何对象,那么当从anotherList访问它时,它的内容也会被更改,因为两个列表都指向相同的引用。

答案 1 :(得分:9)

100,它将保持相同的参考。因此,如果您对list中的特定对象进行更改,则会影响anotherList中的同一对象。

添加或删除任何列表中的对象不会影响另一个。

listanotherList是两个不同的实例,它们只对“内部”对象保持相同的引用。

答案 2 :(得分:5)

引用List.addAll的官方javadoc:

Appends all of the elements in the specified collection to the end of
this list, in the order that they are returned by the specified
collection's iterator (optional operation).  The behavior of this
operation is undefined if the specified collection is modified while
the operation is in progress.  (Note that this will occur if the
specified collection is this list, and it's nonempty.)

因此,您将list中对象的引用复制到anotherList。任何不对anotherList的引用对象进行操作的方法(例如删除,添加,排序)都是本地的,因此不会影响list

答案 3 :(得分:2)

Java API 摘录列表 see here

中的 addAll(集合c)

“将指定集合中的所有元素追加到此列表的末尾,按指定集合的​​迭代器(可选操作)返回它们的顺序。”

您将拥有两个列表中的对象 - 第一个列表中的对象数量加上第二个列表中的对象数量 - 在您的情况下为100个。

答案 4 :(得分:0)

不...一旦你执行了声明anotherList.addAll(list),之后如果你改变了一些列表数据,它就不会携带到另一个列表