Simply do this test:
public void testCollectionsCopy () {
ArrayListlist1 = new ArrayList (3);
list1.add("one");
list1.add("two");
list1.add("three");
ArrayListlist2 = new ArrayList (3);
Collections.copy(list2, list1); // throws IndexOutOfBoundsException!!!!!
}
ArrayListlist1 = new ArrayList (list1);
Δεν υπάρχουν σχόλια:
Δημοσίευση σχολίου