本帖最后由 gudao20080 于 2013-8-15 13:14 编辑
看张孝祥老师的视频,以下代码是可以编译通过的,但是我现在用MyEclipse却编译不通过,是什么原因呢:- int [] a1 = new int[]{1,2,3};
- int [] a2 = new int[4];
- int[][] a3 = new int[2][3];
- String [] a4 = new String[]{"a","b","c"};
- System.out.println(a1.getClass() == a2.getClass());
- System.out.println(a1.getClass() == a4.getClass()); //编译不过
- System.out.println(a1.getClass() == a3.getClass()); //编译不过
- <p> </p>
复制代码 |