- 两个都不是new出来的Integer,且数值在-128~127之间,用== 比较时,基本值相等时为true,超过范围就为false
- 两个都是new出来的Integer,用 == 比较时为false
- int和Integer比较,数值相同,用 == 比较时为true。因为Integer会自动拆箱为int去比较
- 如果要比较两个Integer对象的值,使用.equals()方法就好,或者可以通过.intValue()进行转换后来比较
- 两个都不是new出来的Integer,且数值在-128~127之间,用== 比较时,基本值相等时为true,超过范围就为false
- 两个都是new出来的Integer,用 == 比较时为false
- int和Integer比较,数值相同,用 == 比较时为true。因为Integer会自动拆箱为int去比较
- 如果要比较两个Integer对象的值,使用.equals()方法就好,或者可以通过.intValue()进行转换后来比较