码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-08-03 15:08:43      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:new   最好   ==   equal   ati   内存地址   不用   地址   equals   

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

标签:new   最好   ==   equal   ati   内存地址   不用   地址   equals   

原文地址:http://www.cnblogs.com/songshu120/p/7279327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!