Lamda + List Stream 常用操作

本文介绍了 Java Stream API 的多种实用场景,包括属性抽取、集合转换、字段拼接、List 转 Map、分组及排序等操作。通过具体代码示例展示了如何简化集合处理任务。

文章目录

// 将集合中的某个属性单独抽取为list或set
Set<Long> set = userList.stream().map(User::getId).collect(Collectors.toList());
Set<Long> set = userList.stream().map(User::getId).collect(Collectors.toSet());
// 将集合分组转Map,并指定value取哪个字段
Map<Long, List<Long>> map = objectList.stream().collect(Collectors.groupingBy(Objects::getPid, Collectors.mapping(Objects::getId, Collectors.toList())));
// 取集合对象中的某个字段做拼接
String s = objectList.stream().map(Objects::getName).collect(Collectors.joining(","));
// list转map,将整个对象作为value
Map<Long, ExpertInfoDO> expertInfoDOMap = expertInfoDOS.stream().collect(Collectors.toMap(ExpertInfoDO::getExpertId, Function.identity()));
// list根据一个字段分组
Map<String, List<TeacherBO>> map = userIdList.stream().collect(Collectors.groupingBy(TeacherBO::getDtTenant));
// list根据多个字段分组
Map<String, List<TeacherBO>> map = userIdList.stream().collect(Collectors.groupingBy(item -> item.getDtTenant() + '-' + item.getDtBrand()));
// list多重排序:根据A升序、B倒序、C升序排列
list.sort(Comparator.comparing(TestObj::getA, Comparator.naturalOrder()).thenComparing(TestObj::getB, Comparator.reverseOrder()).thenComparing(TestObj::getC, Comparator.naturalOrder()));
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值