使用Java8根据属性值对List去重
2018-03-27 09:17:13
1895 次阅读
0 个评论
对列表的去重处理,Java 8 在 Stream 接口上提供了类似于 SQL 语句那样的 distinct() 方法,不过它也只能基于对象整体比较来去重,即通过 equals/hashCode 方法。distinct 方法的功效与以往的 new ArrayList(new HashSet(books)) 差不多。用起来是
并且这种去重方式需要在模型类中同时实现 equals 和 hashCode 方法。
成功去重,换个名照样能认出来,还不依赖于 equals/hashCode 方法。
List<Book> unique = book.stream().distinct().collect(Collectors.toList())
并且这种去重方式需要在模型类中同时实现 equals 和 hashCode 方法。
回到实际项目中来,我们很多时候的需求是要根据对象的某个属性来去重。比如接下来的一个实例,一个 books 列表中存在 ID 一样,name 却不同的 book, 我们认为这是重复的,所以需要根据 book 的 id 属性对行去重。在 collect 的时候用到的方法是 collectinAndThen(...), 下面是简单代码:
import java.util.*;
import static java.util.stream.Collectors.collectingAndThen;
import static java.util.stream.Collectors.toCollection;
public class Deduplication {
public static void main(String[] args) {
List<Book> books = Arrays.asList(
new Book(12, "Sun Java"),
new Book(12, "Oracle Java"),
new Book(15, "Scala")
);
List<Book> unique = books.stream().collect(
collectingAndThen(toCollection(() -> new TreeSet<>(Comparator.comparing(o -> o.id))),
ArrayList::new));
unique.forEach(book -> System.out.printf("book[id: %s, name: %s]\n", book.id, book.name));
}
}
class Book {
public final Integer id;
public final String name;
public Book(Integer id, String name) {
this.id = id;
this.name = name;
}
}
执行后打印出
book[id: 12, name: Sun Java]
book[id: 15, name: Scala]
成功去重,换个名照样能认出来,还不依赖于 equals/hashCode 方法。
00
相关话题
- Java反射允许修改final属性值的方式
- ElasticSearch分组后根据sum值排序
- 获取Redis里的所有健值对
- 使用 Jsoup 对 html 进行过滤
- java反射根据字段名读取值
- Java根据时间计算是否为上午、中午、下午以及根据日期获得星期几
- java ascii转中文(ascii转utf-8)
- Java根据出生日期计算还有几天到生日
- FreeMarker判断空值
- CentOS 8.x系统停止维护yum无法使用解决方法
- fabric.js常用属性
- Java OCR使用Tess4J进行图片文字识别
- firewalld对指定IP开放指定端口的配置
- Nginx 根据URL请求参数转发
- Nginx根据URL实现负载均衡