I have a ArrayList l1 of size 10. I assign l1 to new list reference type l2.
Will l1 and l2 point to same arraylist object? Or a copy of arraylist object is assigned to l2.
Because Using l2 reference, if I update the list object, it reflects the changes in l1 reference type also.
eg.
List<Integer> l1 = new ArrayList<Integer>();
for(int i=1;i<=10;i++)
l1.add(i);
List l2 = l1;
l2.clear();
Is there no other way to assign a copy of list object to new reference variable, apart from creating 2 list objects, and doing copy on collections from old to new?
Thanks in advance