int[] a1 = new int[]{1,2,3,4};
String[] a2 =new String[]{"a","b","c"};
这句话编译错误System.out.println(a1.getClass()==a2.getClass());
Multiple markers at this line
- Incompatible operand types Class<capture#6-of ? extends int[]> and Class<capture#7-of ? extends
String[]>
- Line breakpoint:ReflectTest [line: 54] - main(String[]) |