-->
当前位置:首页 > 题库

单选题:下面说法错误的是:

Luz5年前 (2021-06-19)题库562
下面说法错误的是:




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