先看下以下代码和输出
public static void main(String[] args) throws Exception{
Integer a=-128;
Integer aa=-128;
System.out.printf("a=aa? %s \n",a==aa);
Integer b=127;
Integer bb=127;
System.out.printf("b=bb? %s \n",b==bb);
Integer c=128;
Integer cc=128;
System.out.printf("c=cc? %s \n",c==cc);
Integer d=126;
Integer dd= new Integer(126);
System.out.printf("d=dd? %s \n",d==dd);
int e=12611;
Integer ee= new Integer(12611);
System.out.printf("e=ee? %s \n",e==ee);
int f=12611;
Integer ff= 12611;
System.out.printf("f=ff? %s \n",f==ff);
}
a=aa? true
b=bb? true
c=cc? false
d=dd? false
e=ee? true
f=ff? true
那么为什么会会出现这样的结果呢?
这是因为==只有在Java基本类型(short,int,long,byte,char,float,double,boolean)中比较的是值,其他类型中比较的是内存地址。因此,InteGer类中==比较的是内存地址,而不是值从而导致c和cc因为内存地址不相同导致c==cc不相同。
那为什么a=aa 和 b=bb 运行起来又是ture呢?
这是因为Integer类在-128至127(默认)区间的Integer实例缓存到cache数组中,所以
a=aa 和 b=bb都是true
那为什么d=dd 运行起来又是ture呢,他们都在-128和127之间啊?
这是因为区间的Integer实例缓存不包含new出来的对象
总结
Integer 和 int == 这样判断相等是可以的,文章来源:https://www.toymoban.com/news/detail-687449.html
而Integer 和 Integer 要判断相等,推荐用equals (NULL值时也可以判断)文章来源地址https://www.toymoban.com/news/detail-687449.html
到了这里,关于Integer、Long 等包装类 == 值判断、地址判断与缓存的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!