A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

张孝祥 高新技术 第二十四集 数组与Object的更关系及反射类型
int [] a1 = new int[3];
                int [] a2 = new int[4];
                int[][] a3 = new int[2][3];
                String [] a4 = new String[3];
                /**
                 * 对象要得到字节码要用方法
                 * Incompatible 不相容 矛盾 不能同时成立
                 * operand 操作数运算数
                 * capture 捕获
                 */
               
                System.out.println(a1.getClass() == a2.getClass());
                System.out.println(a1.getClass() == a4.getClass());
                System.out.println(a1.getClass() == a3.getClass());

红色字体直接报错误,不能运行。我看老师的直接能够运行。。结果是true true false  我用的MyEclipse blue Edition


错误提示如下


Exception in thread "main" java.lang.Error: Unresolved compilation problems:
        Incompatible operand types Class<capture#8-of ? extends int[]> and Class<capture#9-of ? extends String[]>
        Incompatible operand types Class<capture#10-of ? extends int[]> and Class<capture#11-of ? extends int[][]>

        at cn.itcast.day1.ReflectTest.main(ReflectTest.java:287)

求详细解释





0 个回复

您需要登录后才可以回帖 登录 | 加入黑马