jdk8 stream的分组功能list.stream().collect(Collectors.groupingBy(对象Vo::分组标志字段))
程序员文章站
2022-06-01 14:04:56
...
list.stream().collect(Collectors.groupingBy(对象Vo::分组标志字段));
业务场景:
表结构大概这个样子:
前端返回样式
{
1:[
{ key:value,
key:value,
…
},
{ key:value,
key:value,
…
},
…
],
2:[
{ key:value,
key:value,
…
},
{ key:value,
key:value,
…
},
…
],
}
SQL 写起来的话 group by 自己经验还不太够,就想着如何在逻辑层处理,发现jdk8的stream() 有分组的方法,就百度了下,用如下示例完美解决。
Map<String, List<Student>> collect = stuList.stream().collect(Collectors.groupingBy(Student::getClassId));
for(Map.Entry<String, List<Student>> stuMap:collect.entrySet()){
String classId = stuMap.getKey();
List<Student> studentList = stuMap.getValue();
System.out.println("classId:"+classId+",studentList:"+studentList.toString());
}
上一篇: PS制作漂亮的彩带样式立体水晶图标教程
下一篇: flutter基础集锦