当前位置: 代码迷 >> J2EE >> 关于自动装箱拆箱有关问题
  详细解决方案

关于自动装箱拆箱有关问题

热度:19   发布时间:2016-04-22 00:36:46.0
关于自动装箱拆箱问题
Integer a = 1;
Integer b = 2;
Integer c = 3;
Integer d = 3;
Integer e = 321;
Integer f = 321;
Long g = 3L;
System.out.println(c == d);
System.out.println(e == f);
System.out.println(c == (a + b));
System.out.println(c.equals(a + b));
System.out.println(g == (a + b));
System.out.println(g.equals(a + b));
输出是:
true
false
true
true
true
false

没搞懂,为啥?

------解决方案--------------------
探讨

Integer e = 321;
Integer f = 321;

System.out.println(e == f);

最有争议的应该是这个

正如1楼所说

当值是 -128 ~ 127 的时候 Integer判断是直接用的int原始数据类型 所以为 == 为true

当超出这个范围的时候 则是new了一个对象 == 就为false了
  相关解决方案