使用Java 8对List集合进行分组:
Map<String, List<Student>> result = list.stream().collect(Collectors.groupingBy(Student::getAge));
参考:
使用Java 8对List集合进行分组:
Map<String, List<Student>> result = list.stream().collect(Collectors.groupingBy(Student::getAge));
参考: