// 根据name去重
List<Person> unique = persons.stream().collect(
            Collectors.collectingAndThen(
                    Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(Person::getName))), ArrayList::new)
);

 

posted on 2020-11-27 15:08  十七年蝉  阅读(5648)  评论(0编辑  收藏  举报