我有以下方法:
static IntStream streamedDivisors(final int n) {
return IntStream.range(2, n).parallel().filter(input -> n % input == 0);
}
static int streamedPhi(final int n) {
return streamedDivisors(n).reduce(0, x -> x * x);
}
我在streamedPhi中遇到编译错误,表明我的lambda表达式中存在不兼容的参数类型。有人能帮助我理解这个吗?我基本上试图取一个给定数n的除数,并在我定义的某个函数上聚合一个数字(在这种情况下,将数字平方)。
答案 0 :(得分:5)
您的编译问题是由于IntBinaryOperator#applyAsInt(int, int)
有两个参数。你只是宣布/提供一个。
正如评论中所述,在查看IntStream#reduce(int, IntBinaryOperator)
的javadoc后,您实际上并没有应用有效的减少。我不清楚是什么意思,并在我定义的某个函数上汇总一个数字但Brian has some suggestions。