装箱 将基本数据类型转换成包装类 Integer i = 10; 实际上是在调用Integer.valueOf(10)方法 拆箱 将包装类转换成基本数据类型 int n = i; 实际上是在调用I.intValue()方法