概述
Integer缓冲区
1.Java预先创建了256个常用的整数包装类型对象,范围是(-128-127)
2.在实际应用中,对已创建的对象进行复用,从而可以节省堆空间
代码实现:
public class Test {
public static void main(String[] args) {
Integer integer1 = new Integer(22);
Integer integer2 = new Integer(22);
System.out.println(integer1==integer2);//false
Integer integer3 = Integer.valueOf(100);
Integer integer4 = Integer.valueOf(100);
System.out.println(integer3==integer4);//true
Integer integer5 = Integer.valueOf(200);
Integer integer6 = Integer.valueOf(200);
System.out.println(integer5==integer6);//false
}
}
解释:
1.integer1与integer2比较结果为false:因为他们都指堆中的不同对象,不同的对象地址不同,所以他们的地址值不同,返回false
2.integer3与integer4是直接使用了Integer缓冲区中的对象,因为调用的是100,缓冲区(-128-127)中存在此对象,所以integer3与integer4都指向了这个值为100的对象,所以integer3与integer4地址相同,返回true
3.integer5与integer6比较返回false是因为此时缓冲区中没有200,缓冲区范围是-128-127
为什么知道Integer有缓冲区呢,通过查看valueOf方法的源码可以得知:(catche即为缓冲区的意思)
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
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() {}
}
最后
以上就是伶俐航空为你收集整理的Java包装类Integer缓冲区Integer缓冲区的全部内容,希望文章能够帮你解决Java包装类Integer缓冲区Integer缓冲区所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复