public static Integer valueOf(int i) {
return i >= 128 || i < -128 ? new Integer(i) : SMALL_VALUES[i + 128];
}
/**
* A cache of instances used by {@link Integer#valueOf(int)} and auto-boxing
*/
private static final Integer[] SMALL_VALUES = new Integer[256];
static {
for (int i = -128; i < 128; i++) {
SMALL_VALUES[i + 128] = new Integer(i);
}
}
以上是我跑进去Integer里面看的valueOf的code
这边有个特性是假设宣告的变量小于一个byte
会直接指向static初始化new好的矩阵,否则重新new一个
我的疑问是:
就上面的例子来看,在run Integer.java的时候
会先new 255次来创造SMALL_VALUES array
这样做会比较有效率吗? 为什么java选择这样做呢?