装箱: 将值(基本数据)类型转换成Object(包装)类拆箱: 将Object(包装类)转换成值(基本数据)类型自动装箱: 直接将基本数据类型赋值给包装类自动拆箱: 直接将包装类赋值给基本数据类型 // 装箱 将基本数据类型转换成包装类 Integer a = new Integer(10) // 拆箱, 将包装类转换成基本数据类型 int i = integer.intValue(); // 自动装箱 Integer num1 = 10 // 自动拆箱 int a = num1