自动装箱/拆箱 自动装箱:指开发人员可以把一个基本数据类型直接赋给对应的包装类。
自动拆箱:指开发人员可以把一个包装类对象直接赋给对应的基本数据类型。
基本数据类型包装类 包装类 基本数据类型 Byte byte Integer int Long long Boolean boolean Float float Double double Character char 对象变基本数据类型:拆箱 基本数据类型包装为对象:装箱
在使用这些基本类型对应的包装类型时,如果该数值范围在缓冲池范围内,就可以直接使用缓冲池中的对象。
Example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 public class Demo5 { public static void main (String[] args) { String str = "12" ; int i = Integer.parseInt(str); System.out.println(i+1 ); System.out.println("把整数转换成对应 的字符串:" +Integer.toString(i)); System.out.println("10的二进制:" + Integer.toBinaryString(10 )); System.out.println("10的二进制:" + Integer.toBinaryString(10 )); System.out.println("10的十六进制:" + Integer.toHexString(10 )); String data = "10" ; int a = Integer.parseInt(data, 2 ); System.out.println("a=" +a); ArrayList list = new ArrayList(); list.add(1 ); list.add(2 ); list.add(3 ); int temp = 10 ; Integer b =temp; Integer c = new Integer(13 ); int d = c; System.out.println(d); Integer e = 127 ; Integer f = 127 ; System.out.println("同一个对象吗?" +(e==f)); } }
注意:
Integer类内部维护 了缓冲数组,该缓冲数组存储的-128~127 这些数据在一个数组中。如果你获取的数据是落入到这个范围之内的,那么就直接从该缓冲区中获取对应的数据。【Java8】
编译器会在自动装箱过程调用 valueOf() 方法,因此多个值相同且值在缓存池范围内的 Integer 实例使用自动装箱来创建,那么就会引用相同的对象。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 public class integer { public static void main (String[] args) { Integer a = new Integer(111 ); Integer b = new Integer(111 ); Integer c = Integer.valueOf(111 ); Integer d = Integer.valueOf(111 ); System.out.println(a == b); System.out.println(c == d); } }
结果: false true
new Integer(123) 与 Integer.valueOf(123) 的区别在于:
new Integer(123) 每次都会新建一个对象; Integer.valueOf(123) 会使用缓存池中的对象,多次调用会取得同一个对象的引用。 看下面的例子:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public class integer { public static void main (String[] args) { Integer a = new Integer(160 ); Integer b = new Integer(160 ); Integer c = Integer.valueOf(160 ); Integer d = Integer.valueOf(160 ); System.out.println(a == b); System.out.println(c == d); } }
结果为: false false
因为160超过了缓存的范围(-128-127),所以都是不同的对象, valueOf() 方法的实现比较简单,就是先判断值是否在缓存池中,如果在的话就直接返回缓存池的内容。 如果不在缓存池中,则会new一个Integer对象。
1 2 3 4 5 public static Integer valueOf (int i) { if (i >= IntegerCache.low && i <= IntegerCache.high) return IntegerCache.cache[i + (-IntegerCache.low)]; return new Integer(i); }
看源码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 private static class IntegerCache { static final int low = -128 ; static final int high; static final Integer cache[]; static { 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 ); h = Math.min(i, Integer.MAX_VALUE - (-low) -1 ); } catch ( NumberFormatException nfe) { } } high = h; cache = new Integer[(high - low) + 1 ]; int j = low; for (int k = 0 ; k < cache.length; k++) cache[k] = new Integer(j++); assert IntegerCache.high >= 127 ; } private IntegerCache () {} }
在 jdk 1.8 所有的数值类缓冲池中,Integer 的缓冲池 IntegerCache 很特殊,这个缓冲池的下界是 - 128,上界默认是 127,但是这个上界是可调的,在启动 jvm 的时候,通过 -XX:AutoBoxCacheMax=来指定这个缓冲池的大小,该选项在 JVM 初始化的时候会设定一个名为 java.lang.IntegerCache.high 系统属性,然后 IntegerCache 初始化的时候就会读取该系统属性来决定上界。
参考 [https://cyc2018.github.io/CS-Notes/#/notes/Java%20%E5%9F%BA%E7%A1%80] (https://cyc2018.github.io/CS-Notes/#/notes/Java 基础) https://blog.csdn.net/Castile_zhu/article/details/78822267