查看Integer.java类,会发现有一个内部私有类,IntegerCache.java,它缓存了从-128到127之间的所有的整数对象。
如果在这个区间内,他就会把变量当做一个变量,放到内存中;但如果不在这个范围内,就会去new一个Integer对象。
所以例子中i1和i2指向了一个对象。因此100==100为true。
比较Integer的值,比较靠谱的是通过Integer.intValue()这样出来的就是int值,就可以直接比较了,或者equals()比较。

登录后复制
Integer中1000==1000为false而100==100为true-LMLPHPInteger中1000==1000为false而100==100为true-LMLPHP
 1 /**
 2  * Created by hunt on 2017/6/3.
 3  */
 4 public class TestInteger {
 5     public static void main(String[] args) {
 6         Integer i1 = 100, i2 = 100;
 7         System.out.println(i1 == i2);//true
 8         Integer i3 = 1000, i4 = 1000;
 9         System.out.println(i3 == i4);//false
10 
11 
12         System.out.println(i3.intValue() == i4.intValue());//true
13         System.out.println(i3.equals(i4));//true
14 
15 
16         //Integer  与 int 类型比较(==)比较的是值。
17         int i5 = 1000;
18         System.out.println(i3 == i5);//true
19 
20     }
21 }
登录后复制
View Code

 



登录后复制

以上就是Integer中1000==1000为false而100==100为true的详细内容,更多请关注Work网其它相关文章!

08-29 01:16