java8 collec_java8新特性之stream的collect代码实例
本篇文章小编给大家分享一下java8新特性之stream的collect代码实例,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
1、list转换成list
不带return方式
Listids=wrongTmpList.stream().map(c->c.getId()).collect(Collectors.toList());
带return方式
// spu集合转化成spubo集合//java8的新特性
ListspuBos=spuList.stream().map(spu -> {
SpuBo spuBo = new SpuBo();
BeanUtils.copyProperties(spu, spuBo);
//查询品牌名称
Brand brand = this.brandMapper.selectByPrimaryKey(spu.getBrandId());
spuBo.setBname(brand.getName());
//查询类别名称
Listnames = this.categoryService.queryNamesByIds(Arrays.asList(spu.getCid1(), spu.getCid2(), spu.getCid3()));
spuBo.setCname(StringUtils.join(names, "-"));
return spuBo;
}).collect(Collectors.toList());
2、list转map
MapactiveMap =
actives.stream().collect(Collectors.toMap(Active::getId,
s->s));
3、分组统计计算
list转map(根据某个属性进行分组)
Map> trainMaps =
trainPlans.stream().collect(
Collectors.groupingBy(TrainPlan::getModuleId));
list转map(统计计算)
ListstatDepartments = projectModuleBSDao.statProModByDepartment(params);
MapprojectNumByDep = statDepartments.stream()
.collect(Collectors.groupingBy(StatDepartment::getDepartmentId, Collectors.summingInt(StatDepartment::getProjectNum)));
本篇文章小编给大家分享一下java8新特性之stream的collect代码实例,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。 1、list转换成list 不带return方式 Listids=wrongTmpList.stream().map(c->c.getId()).collect(Collectors.toList()); 带return方式 // spu集合转化成spubo集合//java8的新特性 ListspuBos=spuList.stream().map(spu -> { SpuBo spuBo = new SpuBo(); BeanUtils.copyProperties(spu, spuBo); //查询品牌名称 Brand brand = this.brandMapper.selectByPrimaryKey(spu.getBrandId()); spuBo.setBname(brand.getName()); //查询类别名称 Listnames = this.categoryService.queryNamesByIds(Arrays.asList(spu.getCid1(), spu.getCid2(), spu.getCid3())); spuBo.setCname(StringUtils.join(names, "-")); return spuBo; }).collect(Collectors.toList()); 2、list转map MapactiveMap = actives.stream().collect(Collectors.toMap(Active::getId, s->s)); 3、分组统计计算 list转map(根据某个属性进行分组) Map> trainMaps = trainPlans.stream().collect( Collectors.groupingBy(TrainPlan::getModuleId)); list转map(统计计算) ListstatDepartments = projectModuleBSDao.statProModByDepartment(params); MapprojectNumByDep = statDepartments.stream() .collect(Collectors.groupingBy(StatDepartment::getDepartmentId, Collectors.summingInt(StatDepartment::getProjectNum)));