1.集合中获取指定的一个属性值
List<String> items = li.stream().map(ScdCostChargeItemEntity::getItem).collect(Collectors.toList());
2.集合分组
Map<String, List<T>> yearData = allData.stream().collect(Collectors.groupingBy(T::getYear));
2.集合过滤筛选(单条件):
List<T> filterList = appleList.stream().filter(a -> a.getName().equals("YC")).collect(Collectors.toList());
3.集合过滤筛选(多条件):
List<T> filterList = dayVoList.
stream().filter(a -> a.getYEAR().equals(item)).collect(Collectors.toList())
.stream().filter(a -> a.getPrice() != "0" && a.getPrice() != "0.0").collect(Collectors.toList());
原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/274031.html