java8新特性之List处理

分组:

Map<String, List<T>> yearData = allData.stream().collect(Collectors.groupingBy(T::getYear));

过滤筛选(单条件):

List<T> filterList = appleList.stream().filter(a -> a.getName().equals("YC")).collect(Collectors.toList());

过滤筛选(多条件):

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());
原文地址:https://www.cnblogs.com/youcong/p/13618575.html