一、代码演示
public class one {
public static void main(String args[]){
Integer a=128;
Integer b=128;
Integer a1=127;
Integer b1=127;
System.out.println("a和b"+" "+(a==b));
System.out.println("a1和b1"+" "+(a1==b1));
}
}
结果截图:
二、思考分析
为什么会出现这样的情况呢?
我们知道在包装类型和基本类型中涉及到自动拆装箱,所以我们看到的Integer a=128这一行代码本质上应该是Integer a=Integer.valueOf(128);然后再进行编译
Integer a=128;
Integer a=Integer.valueOf(128);
//两种写法是一致的
那么我们就可以来查看valueOf这个方法的源码是怎样的了,下面就是valueOf方法的源码了,可以看到是先进行一个if条件,如果i是大于IntegerCache的最小或者最大才会返回他的本来的一个值。如果超出了这个条件的范围就是new Integer(i)重新创建对象,而我们看到IntegerCache这个变量最小值是-128最大值是127
而且我们知道的是“==” 在比较引用类型的时候是看内存的地址,因此上面代码当a和b都是128的时候才会输出false
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
private static class IntegerCache {
static final int low = -128;
static final int high;
static final Integer cache[];
static {
// high value may be configured by property
int h = 127;
String integerCacheHighPropValue =
sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
if (integerCacheHighPropValue != null) {
try {
int i = parseInt(integerCacheHighPropValue);
i = Math.max(i, 127);
// Maximum array size is Integer.MAX_VALUE
h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
} catch( NumberFormatException nfe) {
// If the property cannot be parsed into an int, ignore it.
}
}
high = h;
cache = new Integer[(high - low) + 1];
int j = low;
for(int k = 0; k < cache.length; k++)
cache[k] = new Integer(j++);
// range [-128, 127] must be interned (JLS7 5.1.7)
assert IntegerCache.high >= 127;
}
private IntegerCache() {}
}