list stream:分组,统计,筛选

分组:

Map<Long,List<PmsCategoryStatisticVo>> map = list.stream().collect(Collectors.groupingBy(b -> b.getCategoryId()));

list为对象集合,根据categoryId分组,key为cateogryId,value为categoryId相同的对象集合。


对象属性相加:

BigDecimal amount = list.stream()
                                // 将对象的mongey取出来map为Bigdecimal
                                .map(b -> b.getAmount())
                                // 使用reduce聚合函数,实现累加器
                                .reduce(BigDecimal.ZERO, BigDecimal::add);

将对象的mongey取出来map为Bigdecimal,使用reduce聚合函数,实现累加器

 

筛选并根据id去重:

 List list= statisticList.stream()
                                .filter(b -> '2019-01-01'.equals(b.getStatisticTime()))
                                .filter(b -> b.getCategoryId().equals(1L))
                                .collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(b -> b.getId()))), ArrayList::new));

过滤statisticTime等于2019-01-01,
过滤categoryId等于1L,
去重->将过滤后的转set,key为id(set集合key不能重复)->在转为ArrayList

字符串分隔,并转为Long型集合:

String tenantIds = “1,2,3,4,5,6”;
List<Long> listIds = Arrays.asList(tenantIds.split(",")).stream().map(s -> Long.parseLong(s)).collect(Collectors.toList());

获取到对象属性并去重:

List<Long> roleIds = roles.stream().map(r -> r.getId()).distinct().collect(Collectors.toList());

 

 搜索公众号:【爪哇日记】关注最新文章

 

  • 5
    点赞
  • 26
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值