欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

工具类Collections

程序员文章站 2022-03-01 15:01:38
...
/*
 * Collections的sort排序
 */
public class ListDemo {
	
	public static void main(String[] args) {
		List<String> ars = new ArrayList<>();
		for(int i=0;i<4;i++) {
			ars.add(String.valueOf(i));
			}
		ars.add("2");
		System.out.println(ars);  //[0, 1, 2, 3, 2]
		//正序排序
		Collections.sort(ars);
		System.out.println(ars);  //[0, 1, 2, 2, 3] 正序
		//用比较器
		Collections.sort(ars, new Comparator<String>() {

			@Override
			public int compare(String o1, String o2) {
				
				return o2.compareTo(o1);  //正常应该o1.compareTo(o2),相反
			}
		});
		System.out.println(ars); //[3, 2, 2, 1, 0]
		//reverse 反转指定列表中元素的顺序
		Collections.reverse(ars);
		System.out.println(ars); // [0, 1, 2, 2, 3]
	}
}