标签: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());
}
标签:array out 时间 etc public creat 创建时间 col tco
原文地址:http://www.cnblogs.com/jtaoxx/p/7723328.html