自动装箱的定义就是 基本数据类型赋值给包装类型, 拆箱则相反。
Integer integer = 122; // 自动装箱int num = integer; //自动拆箱
想看一下源码是怎么完成自动装箱和拆箱的。 发现第一行代码自动装箱走的方法是 valueOf , 看图
这一段逻辑判断是, 如果传过来的值在Integer对象的缓存范围内, 就直接返回缓存好了的值, 否则另外新建一个Integer实例。
小结:Integer缓存了一个装有255个数值的Integer数组, 在内部静态类IntegerCache的常量Integer[] cache中, 如果要装箱的值在缓存中就直接用传过来的值和IntegerCache常量low取得cache中与传过来的值对应的的下标
先来看一下Integer的缓存, 以下是Integer 的部分源码
/** * Cache to support the object identity semantics of autoboxing for values between * -128 and 127 (inclusive) as required by JLS. * * The cache is initialized on first usage. The size of the cache * may be controlled by the {@code -XX:AutoBoxCacheMax=} option. * During VM initialization, java.lang.Integer.IntegerCache.high property * may be set and saved in the private system properties in the * sun.misc.VM class. */ 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]; //如果不+1,k就<= 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() {} }
源码中解释, 缓存是用来支持自动装箱的对象标识语义 , 它的值介于-128 (low)到127(high)之间, 且是在初次使用的时候被初始化掉
也就是说在使用Integer的时候就已经缓存好了一段 [-128,-127......254,255] 这样的 Integer数组. 那么之前的自动装箱的valueOf的方法就可以豁然开朗了。
接下来看自动拆箱调用的方法intValue
直接返回整型