Integer.valueOf(int i)
方法包含 assesrt 以检查 IntegerCache 是否大于或等于 127。
public static Integer valueOf(int i) {
assert IntegerCache.high >= 127;
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
缓存实现看起来像这样
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) {
int i = parseInt(integerCacheHighPropValue);
i = Math.max(i, 127);
// Maximum array size is Integer.MAX_VALUE
h = Math.min(i, Integer.MAX_VALUE - (-low));
}
high = h;
cache = new Integer[(high - low) + 1];
int j = low;
for(int k = 0; k < cache.length; k++)
cache[k] = new Integer(j++);
}
因此,您可以通过传递属性值来增加缓存大小。但是实现不允许您将缓存大小设置为低于 127(或者它可以?)。那么为什么他们将断言放在Integer.valueOf()
. 开发人员不信任自己的实现吗?我知道如果缓存低于 127Integer.valueOf(int i)
会返回错误的值,但这种情况不可能发生......
有必要在那里断言吗?