Java8-04
【摘要】 1.单字段分组Map<String, List<TaskRecordDO>> collect1 = list.stream().collect(Collectors.groupingBy(TaskRecordDO::getOutNodeKey));@Testpublic void test13() { //所有价格等级的店铺列表 Map<Integer, List<Proper...
1.单字段分组
Map<String, List<TaskRecordDO>> collect1 = list.stream().collect(Collectors.groupingBy(TaskRecordDO::getOutNodeKey));
@Test
public void test13() {
//所有价格等级的店铺列表
Map<Integer, List<Property>> priceMap = properties.stream()
.collect(Collectors.groupingBy(Property::getPriceLevel));
System.out.println(JSON.toJSONString(priceMap));
}
2.多字段分组
//多字段
Map<String, List<DayStoreSkuSizeInvSalDTO>> financialYearWeekInfo = sizeIndex.stream().collect(Collectors.groupingBy(p -> p.getFinancialYear() + ":" + p.getFinancialWeek()));
3.每个店铺的价格等级
每个店铺的价格等级:
@Test
public void test12() {
//获取每个店铺的价格等级
Map<String, Integer> map = properties.stream()
.collect(Collectors.toMap(Property::getName, Property::getPriceLevel));
System.out.println(JSON.toJSONString(map));
}
4.多字段分组
分组:
Map<Integer, Map<Integer, List<StoreSalCalendarDTO>>> groupByYearMonth = results.stream().collect(Collectors.groupingBy(StoreSalCalendarDTO::getFinancialYear, Collectors.groupingBy(StoreSalCalendarDTO::getFinancialYearMonth)));
遍历:
Map<Integer, Map<Integer, List<StoreSalCalendarDTO>>> groupByYearMonth = new HashMap<>();
if (Objects.nonNull(groupByYearMonth)) {
groupByYearMonth.forEach((year, yearValue) -> {
if (Objects.nonNull(yearValue)) {
yearValue.forEach((month, monthValue) -> {
});
}
});
}
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)