关于List排序

这里关于List的排序:

 

public class ZtListSortUtil {
public static List<ApocalypseZtProductRO> getListSort (List<ApocalypseZtProductRO> a){
Collections.sort(a, new Comparator<ApocalypseZtProductRO>() {
public int compare(ApocalypseZtProductRO arg0, ApocalypseZtProductRO arg1) {
int hits0 = arg0.getCount();
int hits1 = arg1.getCount();
if (hits1 < hits0) {
return 1;
} else if (hits1 == hits0) {
return 0;
} else {
return -1;
}
}
});
return a;
}
}
posted @ 2017-03-28 16:05  M_派森  阅读(256)  评论(0编辑  收藏  举报