java list 集合去重

1. 比较直接的方式

result.stream().distinct().collect(Collectors.toList())

2. 根据集合对象的某个属性去重

result.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() ->
                new TreeSet<>(Comparator.comparing(ProcessCarbonCopyPreAnalysisVO::getId))), ArrayList::new));

3. 根据集合对象的多个属性去重

result.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> 
          new TreeSet<>(Comparator.comparing(item -> item.getName() + "_" + item.getCode()))), ArrayList::new));

 

posted @ 2024-11-22 13:57  好久没找你聊天了  阅读(1)  评论(0编辑  收藏  举报