【Stream 노트】지 정 된 조건 에 따라 Stream 을 사용 하여 List 에서 중복 되 는 실 체 를 조회 하고 실 체 를 되 돌려 줍 니 다.
//
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);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Common Lisp에서 스트림 병렬 처리내 컴퓨터에는 많은 코어가 있지만 전체 데이터를 저장하기에 충분한 RAM이 없습니다. 그래서 저는 일반적으로 스트림의 데이터를 병렬로 처리해야 합니다. 예를 들어 태국어 텍스트를 한 줄씩 읽고 각 코어에서 실행되는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.