我有一个Project类:
class Project { List<Name> names; int year; public List<Name> getNames(){ return names; } }
然后我有另一个主要功能,我有一个List< Project>并且必须根据年份过滤该项目列表并获取名称列表作为结果.
你能告诉我如何使用java 8 lambda表达式吗?
谢谢
解决方法
好吧,您没有说明确切的过滤条件,但假设您希望按给定年份过滤元素:
List<Name> names = projects.stream() .filter(p -> p.getYear() == someYear) // keep only projects of a // given year .flatMap(p -> p.getNames().stream()) // get a Stream of all the // Names of all Projects // that passed the filter .collect(Collectors.toList()); // collect to a List