码迷,mamicode.com
首页 > 编程语言 > 详细

对象按某个属性值排序

时间:2016-11-25 11:31:38      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:ons   color   style   ice   compare   blog   span   com   ide   

Collections.sort(list, new Comparator<PriceTypeSkuNum>() {
            @Override
            public int compare(PriceTypeSkuNum o1, PriceTypeSkuNum o2) {
                if(o1.getPrice() > o2.getPrice()){
                    return 1;
                }
                if(o1.getPrice() == o2.getPrice()){
                    return 0;
                }
                return -1;
            }
        });

 

对象按某个属性值排序

标签:ons   color   style   ice   compare   blog   span   com   ide   

原文地址:http://www.cnblogs.com/lostjoke/p/6100645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!