List对象属性排序

看-天蓝蓝蓝 76 0 TXT 2019-03-08 21:03:37

对List集合中 对象属性排序,不需要在每个实体类中重写Sort方法,实现了代码的重用。非常好用的Util类

用户评论
请输入评论内容
评分:
Generic placeholder image 卡了网匿名网友 2019-03-08 21:03:37

我试了一下,30个元素排列总是失败。后来找到原文: http://www.cnblogs.com/XiaoGer/archive/2011/12/16/2290023.html 看了一下,不采用通用类,可以排序: // 按secondScore 降序排序 Collections.sort(lastList, new Comparator() { public int compare(Object a, Object b) { int one = ((Match) a).getSecondScore(); int two = ((Match) b).getSecondS

Generic placeholder image 卡了网匿名网友 2019-03-08 21:03:37

真心好用,自定义列的排序,好!

Generic placeholder image 卡了网匿名网友 2019-03-08 21:03:37

谢谢楼主分享,经测试,能用!

Generic placeholder image 卡了网匿名网友 2019-03-08 21:03:37

比较好用,能节省不少时间