【Stream 노트】지 정 된 조건 에 따라 Stream 을 사용 하여 List 에서 중복 되 는 실 체 를 조회 하고 실 체 를 되 돌려 줍 니 다.

9644 단어 stream자바
groupingBy 와 Function 을 통 해 선별 합 니 다.
//   
public static <E, R> List<E> getDuplicateElements(List<E> list, Function<E, R> function) {		
        Map<R, List<E>> collect = list.stream().collect(Collectors.groupingBy(function));
        return collect.entrySet().stream().filter(entry -> entry.getValue().size() > 1).flatMap(entry -> entry.getValue().stream()).collect(Collectors.toList());

    }

//   
    void contextLoads() {
        class User {
            public Integer id;
            public String name;

            public User(Integer id, String name) {
                this.id = id;
                this.name = name;
            }

            @Override
            public String toString() {
                return "User{" +
                        "id=" + id +
                        ", name='" + name + '\'' +
                        '}';
            }
        }
        List<User> list = new ArrayList<>();
        list.add(new User(1, "1"));
        list.add(new User(1, "2"));
        list.add(new User(2, "3"));
        list.add(new User(3, "3"));


        List<User> duplicateElements = getDuplicateElements(list, user -> user.id);
        System.out.println(duplicateElements);
    }

좋은 웹페이지 즐겨찾기