关于list.Stream的用法(去重,相加,分组)


1.通过list中的某个字段来对list分组,然后得到多组数据
   Map<String, List<WmsStockRefundItem>> refundMap = itemList.stream().collect(Collectors.groupingBy(WmsStockRefundItem::getSupplyNumber));

2.通过list中的某个属性过滤去重,只留下不同的集合

List<WmsStockRefundItem> fiterList =list.stream().filter(distinctByKey(b -> b.getProdNumber())).collect(Collectors.toList());

//通过属性去重
private static <T> Predicate<T> distinctByKey(Function<? super T, ?> keyExtractor) {
Map<Object,Boolean> seen = new ConcurrentHashMap<>();
return t -> seen.putIfAbsent(keyExtractor.apply(t), Boolean.TRUE) == null;
}

3.相加list中的某个值 bigdecimal

 BigDecimal totalquantity = list.stream().map(WmsStockRefundItem::getReqQuantity).reduce(BigDecimal.ZERO, BigDecimal::add);

 

4.相加list中的某个值 Integer

Integer num=list.stream().collect(Collectors.summingInt(WmsStockRefundItem::getReqQuantity))

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM