自动装箱:即基本数据类型转为包装器类型;调用Integer中的valueof(int)方法;(jdk5以上版本) Integer i= 90; 拆箱:Integer类型--->int类型 int myInt = i;