Collections工具类
程序员文章站
2022-03-01 15:04:20
...
Collectoins工具类
Collections是专门用于对Collection集合进行操作的工具类,它提供了一些便捷的方法,如排序,查找,求最值等等
常用方法
static <T> boolean addAll(Collection<? super T> c, T... elements)
一次性向Collection集合中添加多个元素
static void shuffle(List<?> list)
对List集合中的元素随机排列
static <T> void sort(List<T> list)
对List集合中的元素按照自然顺序排列
static <T> void sort(List<T> list, Comparator<? super T> c)
对List集合中的元素按照指定的比较器规则进行排列
static void swap(List<?> list, int i, int j)
对List集合中指定索引位置的两个元素互换位置
static <T> T max(Collection<? extends T> coll, Comparator<? super T> comp)
根据指定比较器产生的顺序,返回给定 collection 的最大元素。
方法演示
ArrayList<Integer> list=new ArrayList<>();
//1.向list中添加多个元素
Collections.addAll(list,33,36,5,67,8,99,53,45,69,88);
System.out.println(list); //[33, 36, 5, 67, 8, 99, 53, 45, 69, 88]
//2.对集合中的元素随机排列
Collections.shuffle(list);
System.out.println(list);//[99, 67, 45, 53, 36, 88, 8, 69, 33, 5]
//3.对集合中的元素按照自然顺序排列(升序)
Collections.sort(list);
System.out.println(list);//[5, 8, 33, 36, 45, 53, 67, 69, 88, 99]
//4.对集合中的元素按照指定比较器顺序排列(降序)
Collections.sort(list, new Comparator<Integer>() {
@Override
public int compare(Integer o1, Integer o2) {
return o2-o1;
}
});
System.out.println(list);//[99, 88, 69, 67, 53, 45, 36, 33, 8, 5]
//5.把集合中2索引和4索引元素互换
Collections.swap(list,2,4);
System.out.println(list);//[99, 88, 53, 67, 69, 45, 36, 33, 8, 5]
//5.获取集合中元素的最大值
Integer max = Collections.max(list, new Comparator<Integer>() {
@Override
public int compare(Integer o1, Integer o2) {
return o1 - o2;
}
});
System.out.println(max);//99
下一篇: animation动画