gpt4 book ai didi

java - 整数缓存有多大?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:06:05 25 4
gpt4 key购买 nike

Integer 有缓存,它缓存 Integer 值。因此,如果我使用方法 valueOf 或收件箱,新值将不会被实例化,而是从缓存中获取。

我知道默认缓存大小是 127 但可以根据 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);
}

所以我认为缓存是可配置的。

最佳答案

内部 Java 实现,无法配置,范围是从 -128 到 127。您可以查看 Javadocs 或简单地查看源代码:

public static Integer valueOf(int i) {
final int offset = 128;
if (i >= -128 && i <= 127) { // must cache
return IntegerCache.cache[i + offset];
}
return new Integer(i);
}

UPD。错了(感谢 Marco Topolnik)。以上所有内容都与旧的 Java 实现有关。对于 Java 7 实现可以通过系统属性实现:

-Djava.lang.Integer.IntegerCache.high=<size>

或 JVM 设置:

-XX:AutoBoxCacheMax=<size>

更新。 2 java.math.BigInteger 具有值 -16 <= x <= 16 的硬编码缓存。来自消息来源:

    private final static int MAX_CONSTANT = 16;
private static BigInteger posConst[] = new BigInteger[MAX_CONSTANT+1];
private static BigInteger negConst[] = new BigInteger[MAX_CONSTANT+1];
static {
for (int i = 1; i <= MAX_CONSTANT; i++) {
int[] magnitude = new int[1];
magnitude[0] = i;
posConst[i] = new BigInteger(magnitude, 1);
negConst[i] = new BigInteger(magnitude, -1);
}
}

public static BigInteger valueOf(long val) {
// If -MAX_CONSTANT < val < MAX_CONSTANT, return stashed constant
if (val == 0)
return ZERO;
if (val > 0 && val <= MAX_CONSTANT)
return posConst[(int) val];
else if (val < 0 && val >= -MAX_CONSTANT)
return negConst[(int) -val];
return new BigInteger(val);
}

关于java - 整数缓存有多大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15052216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com