自包装类及动拆装箱:
目的:简化代码书写,封装类可以提供对基本类型的基本操作,当使用集合框架时需要放入的是对象,不能放入基本类型数据
1.自动装箱:
Integer i=3; 实际会转换为Integer.valueOf(3);
2.自动拆箱:
int j=i; 实际会转换为 i.intValue()
3.自动拆装箱易混代码:
Integer a=1;
Integer b=2;
Integer c=3;
Long d=3L;
//true,ab都会进行intValue()
System.out.println(c==(a+b));
//true,ab先进行intValue(),再将计算后的值进行Integer.valueOf(),最后在进行equals()
System.out.println(c.equals(a+b));
//true ab先进行intValue(),再将计算后的值进强转为long
System.out.println(d==(a+b));
//false ab先进行intValue(),再将计算后的值进行Integer.valueOf(),最后在进行equals()
System.out.println(d.equals(a+b));
4.包装类缓存机制:
目的:提高性能,节约内存空间
通过提供一个缓存数组,数值在规定范围的包装类对象直接返回其在缓存数组的引用。
缓存范围:
Integer自动装箱池的范围是-128~127
Byte,Short,Long范围是-128~127
Character范围是0~127
Float,Double,Boolean没有缓存
Integer类的特殊性:
Integer缓存池的上界可以指定,而且包装类不行。
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() {}
}
private static class LongCache {
private LongCache(){}
static final Long cache[] = new Long[-(-128) + 127 + 1];
static {
for(int i = 0; i < cache.length; i++)
cache[i] = new Long(i - 128);
}
}