最佳答案
假设我们有一个简单的方法,它应该连接 Person 集合的所有名称并返回结果字符串。
public String concantAndReturnNames(final Collection<Person> persons) {
String result = "";
for (Person person : persons) {
result += person.getName();
}
return result;
}
有没有一种方法来写这个代码与新的流 API 为每个函数在1行?