java8新特性之stream的collect实战教程-创新互联
1、list转换成list
不带return方式
List
ids=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()); //查询类别名称 List names = this.categoryService.queryNamesByIds(Arrays.asList(spu.getCid1(), spu.getCid2(), spu.getCid3())); spuBo.setCname(StringUtils.join(names, "-")); return spuBo; }).collect(Collectors.toList());
分享文章:java8新特性之stream的collect实战教程-创新互联
当前网址:http://tyjierui.cn/article/dceghi.html