操作 | | |
| | 根据元素的自然顺序对List集合中的元素升序排序(集合中的元素必须实现Comparable接口) |
sort(List list, Comparator comp) | |
| |
| |
| binarySearch(List list, Object key) | |
frequency(Collection coll, Object obj) | |
indexOfSubList(List source, List target) | |
lastIndexOfSubList(List source, List target) | |
| |
max(Collection coll, Comparator comp) | 根据Comparator指定的顺序获取给定集合中的最大元素 |
| |
min(Collection coll, Comparator comp) | 根据Comparator指定的顺序获取给定集合中的最小元素 |
| swap(List list, int i, int j) | |
replaceAll(List list, Object oldVal, Object newVal) | 使用新值newVal替换List集合中所有的旧值oldVal |
fill(List list, Object obj) | |
| synchronizedList(List list) | 根据指定List集合获取支持同步(线程安全)的List集合 |
| 根据指定Set集合获取支持同步(线程安全)的Set集合 |
| 根据指定Map集合获取支持同步(线程安全)的Map集合 |