摘要: distinct是对对象去重,所以流中的对象必须重写equals和hashCode方法。 例子: List<User> users = new ArrayList<>(); users.add(new User("张三",30)); users.add(new User("李四",39)); use 阅读全文
posted @ 2023-03-14 21:56 shigp1 阅读(390) 评论(0) 推荐(0) 编辑