自动装箱与拆箱

装箱:将基本数据类型用他们对应的引用类型包装起来

int i = 1;
Integer integer = i;

拆箱:将包装类型转化为基本类型

  int b = integer;

 

你可能感兴趣的:(自动装箱与拆箱)