Java에서 속성별로 개체를 그룹화하는 방법
특정 속성별로 개체를 그룹화하는 것은 프로그래밍에서 일반적인 작업입니다. 이를 위해 Java 8에서 Collectors.groupingBy() 메소드를 사용할 수 있습니다.
Student 객체 목록을 생성하고 이를 목록에 저장하는 다음 코드를 고려하세요.
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")); } } 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; } }
학생 개체를 위치별로 그룹화하려면 다음 코드를 사용할 수 있습니다.
Map<String, List<Student>> studlistGrouped = studlist.stream().collect(Collectors.groupingBy(w -> w.stud_location));
이 코드는 Collectors.groupingBy() 메소드를 사용하여 Stud_location 속성을 기준으로 Student 객체를 그룹화합니다. 결과는 위치를 키로, 학생 개체 목록을 값으로 포함하는 맵입니다.
이 접근 방식은 Java 8에서 속성별로 개체를 그룹화하는 깔끔하고 간결한 방법을 제공합니다.
위 내용은 Collectors.groupingBy()를 사용하여 속성별로 Java 개체를 그룹화하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!