Integer中进行==比较
public class Test {
static Logger logger = LoggerFactory.getLogger(Test.class);
public static void main(String[] args) {
int a1 = 127;
int a2 = 127;
logger.info("int a1与a2的==比较值是:{}",a1==a2);
int b1 = 128;
int b2 = 128;
logger.info("int b1与b2的==比较值是:{}",b1==b2);
Integer c1 = 127;
Integer c2 = 127;
logger.info("Integer c1与c2的==比较值是:{}",c1==c2);
Integer d1 = 128;
System.out.println(d1);
Integer d2 = 128;
System.out.println(d2);
logger.info("Integer d1与d2的==比较值是:{}",d1==d2);
}
}
输出结果:
int a1与a2的==比较值是:true
int b1与b2的==比较值是:true
Integer c1与c2的==比较值是:true
Integer d1与d2的==比较值是:false
是不是很奇怪?为啥c1==c2 是true
而d1==d2 却是false
。
我们先看看==
比较
- 基本类型之间相互比较:以值进行比较。
- 包装类型之间相互比较:直接比较他们的引用地址。
- 基本与包装类型比较:自动拆箱再进行比较。
上面int 比较都是基本类型比较,都是值比较 所以都是true。
下面两个Integer 比较是属于上面的第2条也就是引用地址比较,那么为啥一个是true 一个是false。这个就是Integer 中有一个静态内部类 IntegerCache
。
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() {}
}
这是Integer的静态内部类,在Integer类装入内存中时,会执行其内部类中静态代码块进行其初始化工作,做的主要工作就是把 [-128,127]之间的数包装成Integer类并把其对应的引用存入到cache数组中,这样在方法区中开辟空间存放这些静态Integer变量,同时静态cache数组也存放在这里,供线程享用,这也称静态缓存。我们知道在Java的对象是引用的,所以当用Integer 声明初始化变量时,会先判断所赋值的大小是否在-128到127之间,若在,则利用静态缓存中的空间并且返回对应cache数组中对应引用,存放到运行栈中,而不再重新开辟内存。
当Integer d1 = 128;
时由于128 属于int 类型会自动装箱调用Integer.valueOf
方法,调用了IntegerCache
这个内部类,当在-128到127之间 直接获取,否则新开辟一个内存空间。
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
如此,便导致了上面Integer比较用==比较结果为true的情况发生。
路过不要错过,动动小手点个关注,不迷路。