作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
class MaximumTest {
// determines the largest of three Comparable objects
public static <T extends Comparable<T>> int CountDuplicates(T[] anArray, T elem) {
int count = 0;
for (T e: anArray)
if (e.compareTo(elem) == 0)
++count;
return count;
}
public static void main(String args[]) {
double[] D_arr = {
1.2, 3.4, 0.0, 4.5, 0.0
};
int[] I_arr = {
0, 0, 0, 0, 1, 3, 5
};
System.out.println("No of zeros in Double Array = " + CountDuplicates(D_arr, 0.0));
System.out.println("No of zeros in Double Array = " + CountDuplicates(I_arr, 0));
}
}
这段代码有什么错误?
最佳答案
您的数组应该是引用类型:
Double[] D_arr = {1.2, 3.4, 0.0, 4.5, 0.0};
Integer[] I_arr = {0,0,0,0,1,3,5};
原始类型不能用作泛型类型。
进行此更改后,您的代码将通过编译并生成输出:
No of zeros in Double Array = 2
No of zeros in Double Array = 4
关于java - 在java泛型方法中发送数组作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50351539/
我是一名优秀的程序员,十分优秀!