很多人对list集合排序时喜欢实现Comparator
Listlist = new ArrayList<>();
list.add(1);
list.add(7);
list.add(3);
list.add(6);
list.add(5);
list.add(5);
System.out.println("排序前:");
for (int i : list) {
System.out.println(i);
}
Collections.sort(list, new Comparator() {
public int compare(Integer o1, Integer o2) {
return o1-o2; }
});
System.out.println("排序后:");
for (int i : list) { System.out.println(i);}
输出信息:
排序前:
1
7
3
6
5
5
排序后:
1
3
5
5
6
7
这样没有问题,但是如果int换成long呢?只有改成这样:
Collections.sort(list, new Comparator() {
public int compare(Long l1, Long l2) {
return (int) (l1-l2); }
});
输出信息:
排序前:
1
7
3
6
5
5
排序后:
1
3
5
5
6
7
这样看上去也没有问题,但是如果long的数值过大呢?比如数据添加两行:
Listlist = new ArrayList<>();
list.add(1L);
list.add(7L);
list.add(3L);
list.add(6L);
list.add(5L);
list.add(5L);
list.add(1247189571876180L);
list.add(52856189568195L);
然而打印便成了这样:
排序前:
1
7
3
6
5
5
1247189571876180
52856189568195
排序后:
52856189568195
1247189571876180
1
3
5
5
6
7
这是为什么呢?这是因为52856189568195这样的数字与1这样的数字做减法运算后他的数值超过了int的范围,做强转时造成了数据丢失,所以我们这样做减法再强转的方式明显不可取,所以我们可以用这样的方式去解决这个问题:
Collections.sort(list, new Comparator() {
public int compare(Long l1, Long l2) {
return Long.compare(l1,l2);
});
打印信息便正常了:
排序前:
1
7
3
6
5
5
1247189571876180
52856189568195
排序后:
1
3
5
5
6
7
52856189568195
1247189571876180
这个方法不是Long独有的,Integer,Double甚至String都有,这个方法也可以写成这样:l1.compareTo(l2),特别注意的是String,它没有compare方法,只有compareTo方法,为什么使用这个方法就可以避免数据丢失呢?我们来看源码:
public static int compare(long x, long y) {
return (x < y) ? -1 : ((x == y) ? 0 : 1);
}
public int compareTo(Long anotherLong) {
return compare(this.value, anotherLong.value);
}
源码中没有进行强转,用的是一个三元运算符,这个相信大家都看得懂,属于java基础内容,我就不献丑去解释了,到这里就会有人说了,我为什么要用差距这么大数去排序呢?emmm...别急,继续往下看:
有这么一个较复杂的数据:
public class TestBean {
private int id;
private String name;
private Date createDate;
private Date updateDate;
public TestBean(int id, String name, Date createDate, Date updateDate) {
this.id = id;
this.name = name;
this.createDate = createDate;
this.updateDate = updateDate;
}
}
我们想对它进行排序,按创建时间排序,创建时间一样按姓名排序,我们就可以这么写:
Listlist = new ArrayList<>();list.add(new TestBean(1,"德玛西亚刘德华",new Date(0),new Date(0)));list.add(new TestBean(2,"艾欧里亚张学友",new Date(System.currentTimeMillis()),new Date(0)));
list.add(new TestBean(3,"诺克萨斯彭于晏",new Date(1213846185668L),new Date(0)));
list.add(new TestBean(4,"弗雷尔卓德黎明",new Date(13575917L),new Date(0)));
list.add(new TestBean(5,"皮城美少女战士",new Date(13575917L),new Date(0)));
System.out.println("排序前:");
for (TestBean b : list) {
System.out.println(b.toString());
}
Collections.sort(list, new Comparator() {
public int compare(TestBean b1, TestBean b2) {
if (b1.getCreateDate().getTime()-b2.getCreateDate().getTime()!=0){
return Long.compare(b1.getCreateDate().getTime(),b2.getCreateDate().getTime());
}else {
return b1.getName().compareTo(b2.getName());
}
}});
System.out.println("排序后:");
for (TestBean i : list) {
System.out.println(i.toString());
}
打印信息为:
排序前:
TestBean{id=1, name='德玛西亚刘德华', createDate=Thu Jan 01 08:00:00 CST 1970, updateDate=Thu Jan 01 08:00:00 CST 1970}
TestBean{id=2, name='艾欧里亚张学友', createDate=Tue Dec 11 22:36:01 CST 2018, updateDate=Thu Jan 01 08:00:00 CST 1970}
TestBean{id=3, name='诺克萨斯彭于晏', createDate=Thu Jun 19 11:29:45 CST 2008, updateDate=Thu Jan 01 08:00:00 CST 1970}
TestBean{id=4, name='弗雷尔卓德黎明', createDate=Thu Jan 01 11:46:15 CST 1970, updateDate=Thu Jan 01 08:00:00 CST 1970}
TestBean{id=5, name='皮城美少女战士', createDate=Thu Jan 01 11:46:15 CST 1970, updateDate=Thu Jan 01 08:00:00 CST 1970}
排序后:
TestBean{id=1, name='德玛西亚刘德华', createDate=Thu Jan 01 08:00:00 CST 1970, updateDate=Thu Jan 01 08:00:00 CST 1970}
TestBean{id=4, name='弗雷尔卓德黎明', createDate=Thu Jan 01 11:46:15 CST 1970, updateDate=Thu Jan 01 08:00:00 CST 1970}
TestBean{id=5, name='皮城美少女战士', createDate=Thu Jan 01 11:46:15 CST 1970, updateDate=Thu Jan 01 08:00:00 CST 1970}
TestBean{id=3, name='诺克萨斯彭于晏', createDate=Thu Jun 19 11:29:45 CST 2008, updateDate=Thu Jan 01 08:00:00 CST 1970}
TestBean{id=2, name='艾欧里亚张学友', createDate=Tue Dec 11 22:36:01 CST 2018, updateDate=Thu Jan 01 08:00:00 CST 1970}
你们看,这样不但代码简洁,而且出现错误的几率也更小是不是?本人也是个新人程序员,说的不对的地方大家可以指正,希望我们可以一起努力,早日成为大家都想成为的大神!加油,(=゚ω゚)ノ ---===≡≡≡
大家看不清楚可以去我在CSDN发的文章https://blog.csdn.net/tp19970424/article/details/84962584,因为懒,所以我是粘贴复制的,不想再打一遍了...