关于Integer比较的小问题(转)
程序员文章站
2022-04-06 11:05:13
...
Integer a = 1;
Integer b = 1;
Integer c = 127;
Integer d = 127;
Integer e = 128;
Integer f = 128;
System.out.println(a==b);
System.out.println(c==d);
System.out.println(e==f);
结果会是什么呢?
true
true
false
why?
这里用到了java的装箱功能。
在编辑阶段一个Integer的变量直接赋值整数,编译器会优化为Integer.valueOf(int);
在valueOf里面做了什么样的操作呢?
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
默认IntegerCache.low = -127
InegerCache.high = 127
所以如果值在-127到127之间,会直接走缓存,否则会重新new一个对象。
缓存里的对象是已经存在的,所以在比较==的时候,会出现true的情况。
而new的时候就是一个重新的对象,两者比较会出现false。
转载连接:http://qq54903099.iteye.com/blog/2152918
上一篇: Oracle 10g实现只读表的N种方法
下一篇: PHP stripos