AutoBox:自动装箱 public static void main(String args){ Integer iObj = 3;//自动装箱 System.out.println(iObj +12);//iObj 拆箱 }