使用Java8 Stream流中的Collectors.collectingAndThen()方法去重

Collectors.collectingAndThen() 根据对象属性进行去重操作
Collectors.collectingAndThen()方法属于java8 Stream流中的 java.util.stream.Collectors,此类实现了 java.util.stream.Collector接口,还提供了大量的方法对Stream流中的元素进行mapreduce 操作

在获取任务的时候,会出现id重复的状况,利用Collectors.collectingAndThen()进行去重,

List allYearTargetTypePos = this.selectList(new EntityWrapper()
                                                            .eq("SYFW", RangeEnum.all.getValue())
                                                            .or().eq("CJBMID", user.getDepartmentId()));
typePoList.addAll(allYearTargetTypePos);
//        去掉重复的任务
newList = typePoList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(
                () -> new TreeSet<>(Comparator.comparing(YearTargetTypePo::getId))), ArrayList::new));


以上使用到了collectingAndThen()根据属性进行去重的操作,进行结果集的收集,收集到结果集之后再进行下一步的处理。在这个去重操作中还用到了toCollection、TreeSet两个操作。

public static Collector collectingAndThen(Collector downstream,Function finisher)


看源码中需要传的参数有两个,第一个参数是Collector的子类,所以Collectors类中的大多数方法都能使用,比如:toList(),toSet(),toMap()等,当然也包括collectingAndThen()。第二个参数是一个Function函数,也是去重的关键,用到的ArrayList::new调用到了ArrayList的有参构造。Function函数是R apply(T t),在第一个参数downstream放在第二个参数Function函数的参数里面,将结果设置为t。对于toCollection是一个通用的方法,满足treeSet收集集合,再传入需要根据某个属性进行比较的比较器,就能达到去重的效果。


原文链接:

https://blog.csdn.net/qq_40474184/article/details/122043378

你可能感兴趣的:(Java,java)