Integer 与int之间值的关系
public static void main(String[] args) { int a=1000; int b=1000; System.out.println(a==b);/*不考虑[-128,127] 始终返回true*/ Integer a1=8; Integer b1=8; System.out.println(a1==b1);/*考虑[-128,127] 在区间之内返回true,否则返回false*/ Integer a2=new I.