🐵 #面试 #JinXD

基本数据类型到包装类(装箱):

实例:

  1. Integer total = 99;
  2. //等同于:
  3. Integer total = Integer.valueOf(99);

类到基本数据类型(拆箱):

实例:

  1. Integer total = 99;
  2. int totalprim = total;
  3. //等同于:
  4. int totalprim = total.intValue();

包装类的用途:

  1. 作为 和基本数据类型对应的类 类型存在,方便涉及到对象的操作。比如,函数要求传入的参数为Object类型。
  2. 包含了一些对基本数据类型的操作。如Ob.valueOf();获取包装类对象。