日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

java list多字段排序_java中list通过多条件排序

發(fā)布時(shí)間:2025/5/22 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java list多字段排序_java中list通过多条件排序 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

實(shí)現(xiàn)的效果類似于這樣,首先通過(guò)一級(jí)類別id排序,其次是二級(jí)類別,最后是二級(jí)類別中的各項(xiàng)合計(jì)排序;

方法一

/**

* 單品容器排序

*

* @param productSellStatList

* @return

*/

private void getSortList(List productSellStatList) {

Collections.sort(productSellStatList, new Comparator() {

@Override

public int compare(ProductSellStat o1, ProductSellStat o2) {

if (o1.getParentProductTypeID() < o2.getParentProductTypeID()) {// 一級(jí)類目

return -1;

} else if (o1.getParentProductTypeID() == o2.getParentProductTypeID()) { // 一級(jí)類目

if (o1.getProductTypeID() < o2.getProductTypeID()) {

return 1;

} else if (o1.getProductTypeID() == o2.getProductTypeID()) { // 二級(jí)類目

if (o1.getRowTotal() > o2.getRowTotal()) { // 通過(guò)合計(jì)

return -1;

} else if (o1.getRowTotal() == o2.getRowTotal()) {// 通過(guò)合計(jì)

return 0;

} else {

return 1;

}

} else {

return 1;

}

} else {

return 1;

}

}

});

}

方法二

//productSellStatList為要排序的集合

List sortProductSellStatList = new ArrayList(productSellStatList.size()) ;

Map> tempMap = new HashMap>() ;

Comparator comparator = new TotalSaleComparator() ;

for (ProductSellStat p : productSellStatList) {

if (tempMap.isEmpty()) {

List tempList = new ArrayList() ;

tempList.add(p);

tempMap.put(p.getProductTypeID(), tempList) ;

} else {

if (tempMap.containsKey(p.getProductTypeID())) {

tempMap.get(p.getProductTypeID()).add(p);

} else {

// 為lis排序

for (List pList : tempMap.values()) {

Collections.sort(pList, comparator); // 排序

sortProductSellStatList.addAll(pList) ;

}

tempMap.clear();

}

}

if (tempMap.isEmpty()) {

List tempList = new ArrayList() ;

tempList.add(p);

tempMap.put(p.getProductTypeID(), tempList) ;

}

}

// 處理最后的內(nèi)容

if (!tempMap.isEmpty()) {

// 為lis排序

for (List pList : tempMap.values()) {

Collections.sort(pList, comparator); // 排序

sortProductSellStatList.addAll(pList) ;

}

tempMap.clear();

}

productSellStatList.clear(); // 清空集合,方便垃圾回收

/**

* 銷量匯總排序

*/

public class TotalSaleComparator implements Comparator {

@Override

public int compare(ProductSellStat o1, ProductSellStat o2) {

if (o1.getRowTotal() > o2.getRowTotal()) {

return -1;

} else if (o1.getRowTotal() == o2.getRowTotal()) {

return 0;

} else {

return 1;

}

}

}

總結(jié)

以上是生活随笔為你收集整理的java list多字段排序_java中list通过多条件排序的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。