6黑马币
最佳答案通过 Eclipse 的错误提示得到如下信息:
Multiple markers at this line
- Incompatible operand types Class and Class
大致的意思是:不兼容的操作数类型类 ,这里所指的不相容类型就是 int[] 和 int[][] ;
但是通过以下这种方式就能通过编译:
int[] a1=new int[3];
int[] a2=new int[4];
int[][] a3=new int[2][3];
String[] a4=new String[3];
Class clz1 = a1.getClass();
...
| |
| |
| |