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

java集合 遍历排序

时间:2017-10-24 14:59:54      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:array   out   时间   etc   public   creat   创建时间   col   tco   

List<Bean> lbean =newArrayList<>();//添加几个实体类到list里面
Collections.sort(lbean, new Comparator<Bean>(){
  publicintcompare(Beano1,Beano2) { //按照创建时间降序排列
    if(o1.getCreateTime() < o2.getCreateTime()){
      return1;
    }
    if(o1.getCreateTime() == o2.getCreateTime() ){
      return0;
    }
    return -1;
  }
});

for(Bean bean:lbean ) {
System.out.println(bean.getCreateTime());
}

java集合 遍历排序

标签:array   out   时间   etc   public   creat   创建时间   col   tco   

原文地址:http://www.cnblogs.com/jtaoxx/p/7723328.html

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