java8新特性之List处理


 

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

(0)
上一篇 2022年7月13日
下一篇 2022年7月13日

相关推荐

发表回复

登录后才能评论