美文网首页
java8特性stream().map()

java8特性stream().map()

作者: 云鲸鱼rain | 来源:发表于2018-11-08 17:20 被阅读0次
categoryTypeList //类目集合
productInfoList //商品信息集合
ProductInfo //每个商品信息
categoryType //商品类目

List<Integer> categoryTypeList = productInfoList.stream()
                      .map(ProductInfo::getCategoryType)
                      .collect(Collectors.toList());

简单记一下吧,java8的新特性。
功能为: 将 “商品信息集合” 中 “每个商品信息” 的 “商品类目” 放在 “类目集合” 里面。

相关文章

网友评论

      本文标题:java8特性stream().map()

      本文链接:https://www.haomeiwen.com/subject/vlgwxqtx.html