3.手动看完了,来看自动的
为了减轻技术人员的工作,java从jdk1.5之后变为了自动装箱与拆箱
还拿上面那个举例:
手动:
Integer i1=Integer.valueOf(3);
int i2=i1.intValue();
自动
Integer i1=3;
int i2=i1;
这是已经默认自动装好和拆好了
4.从几道题目中加深对自动装箱和拆箱的理解
(1.)
Integer a = 100;
int b = 100;
System.out.println(a==b);结果为 true
原因:a 会自动拆箱和 b 进行比较,所以为 true
(2.)
Integer a = 100;
Integer b = 100;
System.out.println(a==b);结果为true
Integer a = 200;
Integer b = 200;
System.out.println(a==b);结果为false
这就发生一个有意思的事了,为什么两个变量一样的,只有值不一样的一个是true,一个是false
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;
}
在 对 -128到127 之间的进行比较时
不会new 对象,而是直接到常量池中获取,所以100是true,200超过了这个范围然后进行了 new 的操作,所以内存地址是不同的
(3.)
Integer a = new Integer(100);
Integer b = 100;
System.out.println(a==b);
结果为false
这跟上面那个100的差不多啊,从常量池中拿,为什么是false呢?