JVM之自动装箱拆箱
提问:jvm中如何进行进行装箱拆箱操作?
装箱拆箱
先写个示例代码:
package com.imooc.firstappdemo.jvm;
public class TofuCaiInteger {
public static void main(String[] args) {
int icount = 8;
Integer integerCount = 19;
icount = icount * integerCount;
}
}
从代码中我们可以看到 icount时基本数据类型,而integerCount是引用类型,而这两种数据类型居然可以直接通过运算符进行运算。我们知道,在运算过程中,integer进行了拆箱操作,实际上是两个基本变量进行了运算。
反汇编:
字节码解释:首先invokestatic
当我们在执行
Integer integerCount = 19;
时,是先将常量19加载到操作数栈
,
然后执行Integer.valueOf()方法
Integer.valueOf()源码:
/**
* Returns an {@code Integer} instance representing the specified
* {@code int} value. If a new {@code Integer} instance is not
* required, this method should generally be used in preference to
* the constructor {@link #Integer(int)}, as this method is likely
* to yield significantly better space and time performance by
* caching frequently requested values.
*
* This method will always cache values in the range -128 to 127,
* inclusive, and may cache other values outside of this range.
*
* @param i an {@code int} value.
* @return an {@code Integer} instance representing {@code i}.
* @since 1.5
*/
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
我们看到,此方法是将int类型的常量处理为Integer类型。
而对于
icount = icount * integerCount;
这段代码,对应到字节码指令:
invokevirtual指令:
四条指令的主要操作:1、就是将局部变量表中位置1加载到操作数栈上;2、再将位置2的数据加载到操作数栈上;3、然后执行Integer.intValue()方法;4、执行乘法运算。
Integer.intValue()源码
/**
* Returns the value of this {@code Integer} as an
* {@code int}.
*/
public int intValue() {
return value;
}
该方法执行是将Integer转为int类型,即拆箱操作。
总结:在我们程序中虽然我们直接可以用Integer这中引用类型和基本数据类型进行直接运算和赋值操作,实际上在我们的字节码中执行了java中相对应的方法,进行数据类型的转换,即我们所谓装箱拆箱操作。
扩展——关于IntegerCache
刚刚我们发现Integer.valueOf(int i)源码中有个有意思的地方,就是他并没有直接new Integer();而是尝试从IntegerCache中获取,如果获取不到,再重新new一个。
show IntegerCache源码
/**
* 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=<size>} 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];
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内部类,注释大意:缓存提供给自动装箱使用(范围-128到127),缓存在第一次使用时初始化,jvm默认最高127,可通过配置,进行改变,但是最低数-128不可变。
总结:就是Integer提供了一个缓存,默认-128到127之间,自动装箱时,可直接获取,不必new新的对象。