使用 Java8的 stream对list数据去重

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/ianly123/article/details/82658622

list去重,根据对象某个属性、某几个属性去重

去除List中重复的String

List unique = list.stream().distinct().collect(Collectors.toList());

去除List中重复的对象

// Person 对象
public class Person {
    private String id;

    private String name;

    private String sex;

    <!--省略 get set-->
}
// 根据name去重
List<Person> unique = persons.stream().collect(
            collectingAndThen(
                    toCollection(() -> new TreeSet<>(comparing(Person::getName))), ArrayList::new)
);
// 根据name,sex两个属性去重
List<Person> unique = persons.stream().collect(
            collectingAndThen(
                    toCollection(() -> new TreeSet<>(Comparator.comparing(o -> o.getName() + ";" + o.getSex()))), ArrayList::new)
);

猜你喜欢

转载自blog.csdn.net/ianly123/article/details/82658622