Integer详解
2018-03-26 本文已影响31人
Taoyongpan
int和Integer的区别
int是基本数据类型,初始值为0;Integer是对象类,用一个引用指向这个对象,初始值为null;
根据代码讲解
/**
* @Author: Taoyongpan
* @Date: Created in 12:45 2018/3/26
*/
public class IntegerTest {
public static void main(String[] args){
int a = 12;
Integer a1 = 12;
Integer a2 = 12;
int b = 128;
Integer b1 = 128;
Integer b2 = 128;
System.out.println(a == a1);
System.out.println(a1 == a2);
System.out.println(b == b1);
System.out.println(b1 == b2);
}
}
输出结果为:
true
true
true
false
Process finished with exit code 0
第一个和第三个结果为true:
我们上面说到了int是基本数据类型,而Integer是对象类,此时他们为什么是相等的;
这里就要讲一下Java的历史了,在JavaSE5之前,创建一个Integer对象的写法是:
Integer a = new Integer(12);
在JavaSE5之后,引入了装箱和拆箱,我们创建Integer的时候直接赋值即可转化为Integer对象:
Integer a = 12;
装箱:将基本数据类型自动转化为对象;
拆箱:将对象重新转化为基本数据类型;
使用cmd打开我们上面代码编译过的.class文件(javap -v 文件名.class),取出线程池中的赋值部分的字节码:
Constant pool:
#1 = Methodref #7.#20 // java/lang/Object."<init>":()V
#2 = Methodref #21.#22 // java/lang/Integer.valueOf:(I)Ljava/lang/Integer;
#3 = Fieldref #23.#24 // java/lang/System.out:Ljava/io/PrintStream;
#4 = Methodref #21.#25 // java/lang/Integer.intValue:()I
#5 = Methodref #26.#27 // java/io/PrintStream.println:(Z)V
#6 = Class #28 // IntegerTest
#7 = Class #29 // java/lang/Object
由此我们可以看到,在编译的过程中,装箱的过程调用的是Integer.valueOf()方法;拆箱使用的Integer.intValue:()方法;由此我们可以类比出其他装箱拆箱使用的方法;
装箱的实现
Integer.valueOf()的源码:
public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
这几行代码的意思就是,如果value的值i在这个缓存数组的范围内,则返回缓存中的对象,否则创建新的对象;
拆箱的实现
Integer.intValue:()的源码:
/**
* Returns the value of this {@code Integer} as an
* {@code int}.
*/
public int intValue() {
return value;
}
直接返回value值;
第二个结果为true,第四个结果为false
这两个代码相同,只是赋值不同,但输出的结果刚好相反;我们接着看Integer类的源码:
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() {}
}
在代码中,我们找到这个缓存方法,且这个方法的缓存范围是[-128,127],这个是Integer的缓存策略,用来节省内存和提高性能。整型对象在内部实现中通过使用相同的对象引用实现了缓存和重用;此时联系我们上面装箱的源码中的缓存范围,与此处相对应;