Stream 流对集合根据对象的指定属性去重
直接看例子
// TODO 对数据库查询出来的数据根据bladeNo属性进行去重
List<InspectBlade> inspectBladesList = inspectBlades.stream().collect(
// 将集合先放到 treeSet 集合然后将他们转换创建新的集合
Collectors.collectingAndThen(
Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(InspectBlade::getBladeNo))), ArrayList::new
)
);
欢迎一起来学习和指导,谢谢关注!
本文来自博客园,作者:xiexie0812,转载请注明原文链接:https://www.cnblogs.com/mask-xiexie/p/16228657.html