속성별로 개체 목록 그룹화 오브젝트 목록을 그룹화할 필요가 있습니다(StudentAtribute( )를 사용합니다.Location)를 참조해 주세요.코드는 다음과 같습니다. public class Grouping { public static void main(String[] args) { List 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",..