class Data{
private Mixture mixture;
}
class Mixture{
private Long id;
}
List<Data> datas = dao.list(search);
Map<Long, List<Data>> groupedDatas = datas.parallelStream().collect(Collectors.groupingBy((Data::getMixture)::getId));
这样写编译不通过,如何写Lambda表达式,按照Data属性的mixture的id进行分组
添加回答
举报
0/150
提交
取消