foldLeft
Scala在 Java 8中的伟大之处是什么?
我很想它是reduce
,但 reduce 必须返回与它 reduce 相同类型的东西。
例子:
import java.util.List;
public class Foo {
// this method works pretty well
public int sum(List<Integer> numbers) {
return numbers.stream()
.reduce(0, (acc, n) -> (acc + n));
}
// this method makes the file not compile
public String concatenate(List<Character> chars) {
return chars.stream()
.reduce(new StringBuilder(""), (acc, c) -> acc.append(c)).toString();
}
}
上面代码中的问题是acc
umulator:new StringBuilder("")
因此,任何人都可以指出我的foldLeft
/fix 我的代码的正确等价物吗?