装箱拆箱- 包装类是不可以被继承的 装箱拆箱 // 装箱 把基本数据类型转换包装类 // 1. 自动装箱 int t1 = 2; Integer t2 = t1; // 2 手动装箱 Integer t3 = new Integer(t1); // 拆箱 // 1. 自动拆箱 int t4 = t2; // 2. 手动拆箱 int t5 = t2.intValue(); 除了float 和double 都可以使用对象常量池