Java中int和Integer的区别
转载自https://www.cnblogs.com/litingshi/p/8477436.html1.int是基本数据类型,int变量存储的是数值。Integer是引用类型,实际是一个对象,Integer存储的是引用对象的地址。2.Integer i =newInteger(100);Integer j =newInteger(100);System.o...