Integer类 它是一个类,是 int 基本数据类型的封装类. 基本API Integer 类和 int 的区别 Integer 是 int 包装类,int 是八大基本数据类型之一(byte,short,int,long,char,float,double,boolean) Integer 是类,默认值为null,int是基本数据类型,默认值为0: Integer 表示的是对象,用一个引用指向这个对象,而int是基本数据类型,直接存储数值. Integer 的自动拆箱和装箱 自动拆箱和自动装箱…