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

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java 1.8stream_java jdk1.8 使用stream流进行list 分组归类操作

發布時間:2024/7/23 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java 1.8stream_java jdk1.8 使用stream流进行list 分组归类操作 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

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

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 fooList = new ArrayList();

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> 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> param = new ArrayList<>();

Map map = new HashMap<>();

map.put("id","1213");

map.put("name","test");

List strList = param.stream().map(key ->key.get("name")).collect(Collectors.toList());

簡單參數分組:

List damoformList = new ArrayList<>();

Map>> 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 damoformList = new ArrayList<>();

List> 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 map = Maps.newHashMapWithExpectedSize(2);

map.put("repairItemTypeName", entry.getKey());

/*

* 這里排序,1排在前,0排在后

*/

List 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 1.8stream_java jdk1.8 使用stream流进行list 分组归类操作的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。