单选题:下面说法错误的是:
下面说法错误的是: A.int i=1,j=1; System.out.print(i==j); 输出结果为true。 B.int i=100,j=100; System.out.print(i==j); 输出结果为true。 C.Integer i=100,j=100; System.out.print(i==j); 输出结果为true。 D.Integer i=1000,j=1000; System.out.print(i==j); 输出结果为true。 答案:D