午夜剧场伦理_日本一道高清_国产又黄又硬_91黄色网战_女同久久另类69精品国产_妹妹的朋友在线

您的位置:首頁技術文章
文章詳情頁

java jdk1.8 使用stream流進行list 分組歸類操作

瀏覽:205日期:2022-08-23 08:24:59

我就廢話不多說了,大家還是直接看代碼吧~

import com.alibaba.fastjson.JSON;import java.util.ArrayList;import java.util.List;import java.util.stream.Collectors;/** * @author czw */public class Foo{ private String name; private String type; private Double typeValue; private Integer count; public Foo(String name, String type, Double typeValue, Integer count) { this.name = name; this.type = type; this.typeValue = typeValue; this.count = count; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public Double getTypeValue() { return typeValue; } public void setTypeValue(Double typeValue) { this.typeValue = typeValue; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } @Override public String toString() { return 'Foo{' +'name=’' + name + ’’’ +', type=’' + type + ’’’ +', typeValue=' + typeValue +', count=' + count +’}’; } public static void main(String[] args) { List<Foo> fooList = new ArrayList<Foo>(); fooList.add(new Foo('A','san',1.0,2)) ; fooList.add( new Foo('A','nas',13.0,1)) ; fooList.add(new Foo('B','san',112.0,3)) ; fooList.add(new Foo('C','san',43.0,5)) ; fooList.add(new Foo('B','nas',77.0,7)) ; List<List<Foo>> groupList = new ArrayList<>(); fooList.stream().collect(Collectors.groupingBy(Foo::getName,Collectors.toList())).forEach((name,fooListByName)->{ groupList.add(fooListByName);}); System.out.println(JSON.toJSONString(groupList)); }}

輸出結果

[ [{ 'count': 2, 'name': 'A', 'type': 'san', 'typeValue': 1 }, { 'count': 1, 'name': 'A', 'type': 'nas', 'typeValue': 13 }], [{ 'count': 3, 'name': 'B', 'type': 'san', 'typeValue': 112 }, { 'count': 7, 'name': 'B', 'type': 'nas', 'typeValue': 77 }], [{ 'count': 5, 'name': 'C', 'type': 'san', 'typeValue': 43 }]]

補充知識:java jdk1.8的stream復雜和簡單的分組

獲取List對象中的某個參數時:

List<Map<String,String>> param = new ArrayList<>();Map<String,String> map = new HashMap<>();map.put('id','1213');map.put('name','test');List<String> strList = param.stream().map(key ->key.get('name')).collect(Collectors.toList());

簡單參數分組:

List<DamoForm> damoformList = new ArrayList<>();Map<String, Map<String, List<DamoForm>>> collect = damoformList.stream().collect(Collectors.groupingBy(DamoForm::getId())).entrySet().stream().collect(Collectors.toMap( entry -> entry.getKey(), entry -> entry.getValue().stream().collect(Collectors.groupingBy(DamoForm::getName()))));

針對List復雜排序,多個條件進行排序:

應用場景:針對List中某個字段的數據進行雙重倒序的方式排序,代碼有點復雜,不明白的可以留言。

List<DamoForm> damoformList = new ArrayList<>();List<Map<String, Object>> result = damoformList.stream() .collect(Collectors.groupingBy(DamoForm::getPartClass)) .entrySet() .stream() .sorted((o1, o2) -> { /** 這里排序,任何有1的排在前,全部是0排在后*/Integer sort1 = o1.getValue().stream().anyMatch(item -> item.getIsFlag() > 0) ? -1 : 1;Integer sort2 = o2.getValue().stream().anyMatch(item -> item.getIsFlag() > 0) ? -1 : 1;return sort1.compareTo(sort2); }) .map(entry -> {Map<String, Object> map = Maps.newHashMapWithExpectedSize(2);map.put('repairItemTypeName', entry.getKey()); /* * 這里排序,1排在前,0排在后 */ List<DamoVO> damoVOList = entry.getValue().stream() .sorted(Comparator.comparingInt(o -> (o.getIsFlag() * -1))) .collect(Collectors.toList()); map.put('repairTypeList', itemDescFormList); return map; }) .collect(Collectors.toList());

以上這篇java jdk1.8 使用stream流進行list 分組歸類操作就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持好吧啦網。

標簽: Java
相關文章:
主站蜘蛛池模板: 可以看的毛片 | 蜜臀久久99精品久久久久宅男 | www.黄色片.com| 五月婷婷在线观看 | 成人小视频免费观看 | 日韩网站免费观看 | 国产黄毛片 | 国产日韩欧美在线观看 | 日本一区二区视频在线观看 | 成人二区三区 | 亚洲久久在线 | 全部免费毛片在线播放一个 | 一区二区三区视频在线播放 | 色婷婷久久久 | 久久视频免费在线 | 97福利网| 亚洲欧美另类综合 | 看毛片的网址 | 日韩字幕在线 | 午夜色av | 欧美日韩色 | 国产区精品在线 | 黄视频免费看在线 | 欧美少妇一区 | 国产一区91精品张津瑜 | 一级片久久久 | 亚洲欧美精品一区二区三区 | 免费一级特黄 | 国产成人精品视频在线 | 国产午夜精品视频 | 天天干天天谢 | 新91视频在线观看 | 中文字幕av免费 | 欧美xxx在线观看 | 天天做夜夜操 | 午夜在线观看视频18 | 日韩欧美一区二区三区在线 | 中文字幕永久在线 | 永久av免费网站 | 日本精品久久久久 | 国产五月天婷婷 |