java8 stream

list快速处理,感觉代码逼格很高

先新建三个map,放进一个list

List<Map<String, Object>> list = new ArrayList();
Map map = new HashMap();
map.put("age", 1);
map.put("name", "name1");

Map map1 = new HashMap();
map1.put("age", 5);
map.put("name", "name2");

Map map2 = new HashMap();
map2.put("age", 3);
map.put("name", "name3");

list = Arrays.asList(map, map1, map2);
案例
1.得到list中的age大于2的map并组成一个新的集合(filter)
list.stream().filter(res->(int)res.get("age") > 2).collect(Collectors.toList());
2.得到list中的所有name组成一个新的集合(map)
list.stream().map(res -> (String)res.get("name")).collect(Collectors.toList())
3.得到list中的所有age总和(reduce)

得到age总和需要将所有的age拎出放进新的集合,然后在求和

List<integer> agetList = list.stream().map(res -> (int)res.get("age")).collect(Collectors.toList())
int sum = agetList.stream().reduce(0, (item1, item2) -> item1 += item2)
4.得到list中age最大和最小的map(max、min)
Map map11 = list.stream().max(Comparator.comparing(m -> (int) m.get("age"))).get();
Map map11 = list.stream().min(Comparator.comparing(m -> (int) m.get("age"))).get();
5.anyMatch、allMatch、noneMatch
//是否存在age>6
boolean a = list.stream().anyMatch(res->(int)res.get("age") > 6);
System.out.println(a); //false

//age是否全部大于1
boolean a = list.stream().allMatch(res->(int)res.get("age") > 1);
System.out.println(a); //false

//noneMatch跟allMatch相反,判断条件里的元素,所有的都不是,返回true



更多 https://blog.csdn.net/qq_43410878/article/details/123716629
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值