image.png- 包装类是不可以被继承的

装箱拆箱

  1. // 装箱 把基本数据类型转换包装类
  2. // 1. 自动装箱
  3. int t1 = 2;
  4. Integer t2 = t1;
  5. // 2 手动装箱
  6. Integer t3 = new Integer(t1);
  7. // 拆箱
  8. // 1. 自动拆箱
  9. int t4 = t2;
  10. // 2. 手动拆箱
  11. int t5 = t2.intValue();

image.png
除了float 和double 都可以使用对象常量池
image.png