List<ClientFollowUp> distinctList = Stream.concat(list.stream(), result.stream()) .distinct() .collect(Collectors.collectingAndThen( Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing( p -> Arrays.asList(p.getCustomerName())))), ArrayList::new));
时间: 2024-02-14 11:35:23 浏览: 89
node.js中 stream使用教程
这段代码的作用是将两个 List 合并,并去重,去重的方式是按照 ClientFollowUp 对象的 customerName 属性进行比较。
具体来说,这段代码使用了 Java 8 中的 Stream API,首先通过 `Stream.concat(list.stream(), result.stream())` 将两个 List 进行合并,得到一个 Stream 对象。然后调用 `distinct()` 方法对 Stream 中的元素进行去重操作,由于 ClientFollowUp 对象没有实现 Comparable 接口,因此需要在创建 TreeSet 对象时指定 Comparator 对象进行比较。这里使用了 Lambda 表达式 `Comparator.comparing(p -> Arrays.asList(p.getCustomerName()))` 创建了一个 Comparator 对象,表示按照 ClientFollowUp 对象的 customerName 属性进行比较。最后,使用 `collect(Collectors.collectingAndThen(...))` 方法将去重后的元素收集到一个 ArrayList 中,并返回该 List。
需要注意的是,这种方式只能对 List 中的元素进行浅层去重,即只能去除对象的引用相同的元素,如果需要对 List 中的元素进行深层去重,需要在 ClientFollowUp 类中重写 equals 和 hashCode 方法。
阅读全文