1. 程式人生 > >判斷Integer值相等最好不用==最好使用equals

判斷Integer值相等最好不用==最好使用equals

問題 print 內存地址 ++ i++ 是否 出錯 地址 equal

Integer c = 3;
Integer d = 3;
Integer e = 321;
Integer f = 321;
System.out.println(c == d);
System.out.println(e == f);

輸出 true false

Integer為對象判斷是否相等還是使用equals最靠譜,

int為基本類型,判斷是否相等就是可以使用==.

原因:

static final Integer cache[] = new Integer[-(-128) + 127 + 1];

static {
for(int i = 0; i < cache.length; i++) {
cache[i] = new Integer(i - 128);
}
}


這是源碼,也就是說cache中已有-128到127,不在這範圍的會新new ,這時可以理解比較的是內存地址,也就是是不是同個一對象.

所以說當Integer的值不在-128到127的時候使用==方法判斷是否相等就會出錯,在這個範圍之內的就會沒有問題!!!

判斷Integer值相等最好不用==最好使用equals