クラスInteger
には、値をキャッシュするキャッシュがありInteger
ます。したがって、メソッドvalueOf
または受信ボックスを使用すると、新しい値はインスタンス化されませんが、キャッシュから取得されます。
デフォルトのキャッシュサイズはです127
が、VM設定により拡張できます。私の質問は、これらの設定のキャッシュサイズのデフォルト値はどれくらいですか?この値を操作できますか?この値は、使用するVM(32ビットまたは64ビット)によって異なりますか?
現在、レガシーコードの調整を行っており、おそらくintからIntegerへの変換が必要になります。
明確化:Javaソースで見つけた次のコード
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) {
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++);
}
private IntegerCache() {}
}
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);
}
したがって、キャッシュは構成可能だと思います。