- sort(同Arrays)
- shuffle(随机重排)
Collections.shuffle(list);
- binarySearch(同Arrays)
- max
- min
- indexOfSublist
- lastIndexOfSublist
- replaceAll
Collections.replaceAll(list, 1, 100);
- reverse(反转列表)
- rotate(集合旋转)
Collections.rotate(list, 2);
- copy
Collections.copy(listB, listA);
将listA中元素复制(引用)到listB中,listB的长度必须不小于listA的长度。
copy后改变listA中元素,listB中元素也会改变
- swap
- fill
- nCopies
生成长度为n的列表,列表不可改变,所有的引用都指向同一个对象,即修改列表中任意一个下标的元素,所有元素都会改变
List<Person> listB = new ArrayList<>(Collections.nCopies(5, new Person(3)));
listB.get(0).age = 321;
System.out.println("listB: " + listB);
// listB: [Persion{age=321}, Persion{age=321}, Persion{age=321}, Persion{age=321}, Persion{age=321}]
Person[] persons = {new Person(43), new Person(54)};
Collections.addAll(listA, persons);
//等价于 Collections.addAll(listA, new Person(43), new Person(54));
网友评论