Java 中的数据类型分为基本数据类型和引用数据类型
int是基本数据类型,Integer是引用数据类型;
Ingeter是int的包装类,int的初值为0,Ingeter的初值为null。
初始化
int i =1;
Integer i= new Integer(1);
自动装箱和拆箱