我正在尝试编写一个打印整数或字符数组的通用方法printAll 。这是代码:
public static void main(String[] args) {
char cArray[] = {'a','b','c','d'};
int iArray[] = {1,2,3,4};
printAll(iArray); // Error at this line--refer below the code
}
public static <T> void printAll(T[] t){
for(T x:t) {
System.out.println(x);
}
}
错误:线程“main”中的异常 java.lang.RuntimeException:无法编译的源代码 - 错误的树类型:<.any>