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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

先上代码:
<p style="line-height: 30px; text-indent: 2em;"></p>public class DemoInteger {
        public static void main(String[] args) {
                int i1 = 228;
                int i2 = 228;
                System.out.println(i1==i2);
        }

}
复制代码
public class DemoInteger {
public static void main(String[] args) {
Integer i1 = 228;
Integer i2 = 228;
System.out.println(i1==i2);
}

}
复制代码

如果是int,返回的是true.
如果是Integer,则返回false.
求教,为什么

3 个回复

倒序浏览
= =少年也是为了黑马币啊,这问题不会的话百度都能查到
回复 使用道具 举报
一个是比较值
一个是比较在栈中地址值
回复 使用道具 举报
我来跑龙套  :)
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马