Java是一个近乎纯洁的面向对象编程语言,但是为了编程的方便还是引入不是对象的基本数据类型,但是为了能够将这些基本数据类型当成对象操作,Java为每一个基本数据类型都引入了对应的包装类型(wrapper class),int的包装类就是Integer,
从JDK 1.5开始引入了自动装箱/拆箱机制,使得二者可以相互转换。
Java 为每个原始类型提供了包装类型:
原始类型: boolean, char byte,short,int,long float,double
包装类型:Boolean,Character Byte,Short,Integer,Long Float,Double
1 package com.lovo; 2 3 public class AutoUnboxingTest { 4 5 public static void main(String[] args) { 6 Integer a = new Integer(3); 7 Integer b = 3; // 将3自动装箱成Integer类型 8 int c = 3; 9 System.out.println(a == b); // false 两个引用没有引用同一对象 10 System.out.println(a == c); // true a自动拆箱成int类型再和c比较 11 } 12 }
补充:最近还遇到一个比较经典的面试题,也是自动装箱和拆箱相关的
1 public class Test03 { 2 3 public static void main(String[] args) { 4 Integer f1 = 100, f2 = 100, f3 = 150, f4 = 150; 5 System.out.println(f1 == f2); //结果是true 6 System.out.println(f3 == f4); //结果是false 7 } 8 }
如果不明就里很容易认为两个输出要么都是true要么都是false。首先需要注意的是f1、f2、f3、f4四个变量都是Integer对象,所以下面的==运算比较的不是值而是引用。
装箱的本质是什么呢?
当我们给一个Integer对象赋一个int值的时候,会调用Integer类的静态方法valueOf,如果看看valueOf的源代码就知道发生了什么
1 public static Integer valueOf(int i) { 2 if (i >= IntegerCache.low && i <= IntegerCache.high) 3 return IntegerCache.cache[i + (-IntegerCache.low)]; 4 return new Integer(i); 5 }
简单的说,如果字面量的值在-128到127之间,那么不会new新的Integer对象,而是直接引用常量池中的Integer对象,
所以上面的面试题中f1==f2的结果是true,而f3==f4的结果是false。