list.stream().collect(Collectors.groupingBy(Items::getCategoryId));是什么意思
时间: 2023-06-05 20:07:54 浏览: 102
java8新特性之stream的collect实战教程
5星 · 资源好评率100%
这段代码是使用Java 8中的Stream API对一个对象列表进行分组操作,按照对象的categoryId属性进行分组,返回一个Map对象,其中键为categoryId值,值为该categoryId下的对象列表。
阅读全文