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://www.scyingshan.cn/article/dceghi.html

 建站
建站
 咨询
咨询 售后
售后
 建站咨询
建站咨询 
 