1. 作用:操作Collection和Map的工具类
2.常用方法:
reverse(List):反转List 中的元素顺序
shuffle(List):对list集合元素进行随机排序
sort(List):根据元素的自然顺序对指定List集合元素按升序排序
sort(List,comparator):根据指定的Comparator 产生的顺序对List 集合进行排序
swap(List, int, int):将指定的List 集合中的i 处元素和j 处元素进行交换
Object max(Collection):根据元素的自然排序,返回给定集合中的最大元素
Object max(Collection, Comparator):根据Comparator指定的顺序,返回给定集合中的最大元素
Object min(Collection):根据元素的自然排序,返回给定集合中的最小元素
Object min(Collection, Comparator):根据Comparator指定的顺序,返回给定集合中的最小元素
int frequency(Collection, Object):返回指定集合中指定元素的出现次数
void copy(List dest, List src):将src中的内容复制到dest中(易错)
boolean replaceAll(List list, Object oldVal, Object newVal):使用新值替换List 对应的
说明:ArrayList和HashMap都是线程不安全的。如果程序要求线程安全,我们可以将ArrayList、HashMap转换为线程安全的。
使用synchronizedList(List list) 和synchronizedMap(Map map)