我是靠谱客的博主 忧伤胡萝卜,这篇文章主要介绍关于Integer,127和128的问题,现在分享给大家,希望可以做个参考。

里面的,直接贴源码来看

Integer i=127;
Integer b=128;
Integer c=128;
Integer d=127;
Integer j;
System.out.println(i==d);
System.out.println(b==c);

结果为:

true
false

里面内容讲的很明白,最大为127,如果大于127就new一个新的Integer,如果小于127则引用同一个

 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() {}
}

 

转载于:https://www.cnblogs.com/hickup089/p/9910165.html

最后

以上就是忧伤胡萝卜最近收集整理的关于关于Integer,127和128的问题的全部内容,更多相关关于Integer,127和128内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部