Java에서 속성별로 객체를 그룹화하면 데이터를 구성하고 분석하는 구조화된 방법을 제공할 수 있습니다. 예를 들어 학생 목록과 학생 위치가 있다고 가정해 보겠습니다. 추가 처리를 위해 위치에 따라 학생들을 그룹화할 수 있습니다.
이를 달성하기 위해 Java 8의 고급 기능을 활용하는 코드 조각은 다음과 같습니다.
import java.util.List; import java.util.ArrayList; import java.util.Map; import java.util.stream.Collectors; public class Grouping { public static void main(String[] args) { List<Student> studlist = new ArrayList<>(); studlist.add(new Student("1726", "John", "New York")); studlist.add(new Student("4321", "Max", "California")); studlist.add(new Student("2234", "Andrew", "Los Angeles")); studlist.add(new Student("5223", "Michael", "New York")); studlist.add(new Student("7765", "Sam", "California")); studlist.add(new Student("3442", "Mark", "New York")); Map<String, List<Student>> studlistGrouped = studlist.stream().collect(Collectors.groupingBy(w -> w.stud_location)); } } class Student { String stud_id; String stud_name; String stud_location; Student(String sid, String sname, String slocation) { this.stud_id = sid; this.stud_name = sname; this.stud_location = slocation; } }
The Collectors. Java 8에 도입된 groupingBy 메소드를 사용하면 지정된 키 함수의 값을 기반으로 객체를 그룹화하는 맵을 생성할 수 있습니다. 이 경우, Stud_location 필드를 키 함수로 지정하여 각 키가 위치를 나타내고 해당 값이 해당 위치에 있는 학생 목록인 맵이 생성됩니다.
이 접근 방식은 효율적이고 우아한 특정 속성을 사용하여 개체 목록을 그룹화하는 방법입니다. 결과 지도는 추가 필터링, 정렬 또는 데이터 시각화 등 다양한 목적으로 활용될 수 있습니다.
위 내용은 Java 8 스트림을 사용하여 속성별로 객체를 그룹화하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!