library.stream()
.map(book -> book.getAuthor())
.filter(author -> author.getAge() >= 50)
.map(Author::getLastName)
.limit(10)
.collect(Collectors.toList());
如何打印列表?我试过了
System.out.println(Collectors.toList());
但它给了我
java.util.stream.Collectors$CollectorImpl@4ec6a292
长风秋雁
拉丁的传说
青春有我
相关分类