java 两个List 根据多个字段去重
时间: 2023-07-20 09:33:57 浏览: 109
List集合多个复杂字段判断去重的案例
可以使用 Java 8 的 Stream API 来实现多字段去重。假设有两个 `List` 对象 `list1` 和 `list2`,每个列表都包含一个 `Person` 类型的对象,该对象有两个字段 `name` 和 `age`,可以按照以下方式去重:
```java
List<Person> distinctList = Stream.concat(list1.stream(), list2.stream())
.distinct()
.collect(Collectors.collectingAndThen(
Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(
p -> Arrays.asList(p.getName(), p.getAge())))),
ArrayList::new));
```
上述代码中,使用 `Stream.concat` 方法将两个列表合并为一个流,并使用 `distinct` 方法去重。然后,使用 `Collectors.toCollection` 方法创建一个 `TreeSet` 集合,该集合可以根据多个字段去重。具体来说,`Comparator.comparing` 方法接收一个 `Function` 对象,该对象将每个 `Person` 对象映射为一个包含两个字段的列表,然后使用 `Arrays.asList` 方法将这个列表封装为 `List` 对象。这样,`TreeSet` 集合就可以根据这个列表进行去重。
最后,使用 `Collectors.collectingAndThen` 方法将 `TreeSet` 转换为 `ArrayList`,得到最终的去重后的列表。
阅读全文