集合操作
- 从集合中过滤出某一个字段存入到新集合
// 从商品集合中过滤出商品类目id为一个新 List<Integer>集合
List<Integer> categoryTypeList = productInfoList.stream()
.map(e -> e.getCategoryType())
.collect(Collectors.toList());
// 从OrderDetailList集合中过滤出对应属性组合为对象集合返回
List<CartDTO> cartDTOList = orderDTO.getOrderDetailList().stream().map(
e -> new CartDTO(e.getProductId(), e.getProductQuantity())
).collect(Collectors.toList());