巩固java中Collections中sort方法的用法

###这里不讲原理了,有兴趣可以追踪java源码

测试用例一:

ArrayList<Integer> list = new ArrayList<Integer>();
    list.add(1);
    list.add(3);
    list.add(4);
    list.add(2);
    list.add(7);
    list.add(6);

Collections.sort(list);
System.out.println(list)

结论:默认情况下Collections.sort是升序排序
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Comparator<Integer> comparable = new Comparator<Integer>() {
@Override
public int compare(Integer l, Integer h) {
System.out.println(l+" "+h);
if(l > h){
return -1;
}else{
return 1;
}
}
};
ArrayList<Integer> list = new ArrayList<Integer>();
list.add(1);
list.add(3);
list.add(4);
list.add(2);
list.add(7);
list.add(6);
System.out.println(list);
sort(list,comparable);
System.out.println(list);

打印结果


1
2
3
4
5
6
7
8
9
10
11
12
13
[1, 3, 4, 2, 7, 6]
3 1
4 3
2 4
2 3
2 1
7 2
7 3
7 4
6 3
6 4
6 7
[7, 6, 4, 3, 2, 1]
盛艳明 wechat
欢迎您扫一扫上面的微信公众号,订阅我的博客!