作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在此处输入代码
大家好,有人可以解释一下我在这个函数中遇到的问题吗:
public class Summer{
public <X,Y> Y[] sum(X[] inArr, Y first, SumFunction<Y,X> f, Y[] outArr){
for(int i = 0; i < inArr.length; i++){
outArr[i] = f.op(inArr[i], first); //here I have problem
first = outArr[i];
}
return outArr;
}
}
我收到错误:
The method op(Y, X) in the type SumFunction<Y,X> is not applicable for the arguments (X, Y)
我需要使用这个功能,我该怎么做,谢谢您的建议
最佳答案
我认为你必须调用 f.op(first, inArray[in])。Sum Function 的 op() 方法似乎将 Y 作为第一个参数,将 X 作为第二个参数。
关于java - 泛型函数的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4095198/
我是一名优秀的程序员,十分优秀!