黑马程序员技术交流社区

标题: 求人解决!怎么回事啊??? [打印本页]

作者: luoleiheima    时间: 2015-7-13 21:33
标题: 求人解决!怎么回事啊???
先上代码:
<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.
求教,为什么

作者: 夸克    时间: 2015-7-13 23:45
= =少年也是为了黑马币啊,这问题不会的话百度都能查到
作者: 白面馅包子    时间: 2015-7-13 23:49
一个是比较值
一个是比较在栈中地址值
作者: 陈祖杰    时间: 2015-7-13 23:56
我来跑龙套  :)




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2