为什么使用Integer问不是int?
int是java基本数据类型,Integer是int的包装类。
Integer使用需要被实例化,int不需要(也就是说Integer是对象,int不是)
Integer的默认值null,int的默认值为0
参数是对象,int不是对象,所以用Integer