Java中的“128“陷阱,源码角度解析

﹏ヽ暗。殇╰゛Y 2024-03-17 21:07 193阅读 0赞

当我们用“==”方式在比较Java中Interger类型的数据时,有时候会发现两个明明相同的值,最后比较的结果为false

  1. public class Main {
  2. public static void main(String[] args) {
  3. Integer i1 = 100;
  4. Integer i2 = 100;
  5. Integer i3 = 128;
  6. Integer i4 = 128;
  7. System.out.println(i1==i2);
  8. System.out.println(i3==i4);
  9. }
  10. }

运行结果:

5134f3c33cd04faea1bac400a46bc0d5.png

为什么会出现这样的结果?输出结果表明i1和i2指向的是同一个对象,而i3和i4指向的是不同的对
象。此时只需一看源码便知究竟,下面这段代码是Integer的valueOf方法的具体实现:

  1. public static Integer valueOf(int i) {
  2. if(i >= -128 && i <= IntegerCache.high)
  3. return IntegerCache.cache[i + 128];
  4. else
  5. return new Integer(i);
  6. }

其中IntegerCache类的实现为:

  1. private static class IntegerCache {
  2. static final int high;
  3. static final Integer cache[];
  4. static {
  5. final int low = -128;
  6. // high value may be configured by property
  7. int h = 127;
  8. if (integerCacheHighPropValue != null) {
  9. // Use Long.decode here to avoid invoking methods that
  10. // require Integer's autoboxing cache to be initialized
  11. int i = Long.decode(integerCacheHighPropValue).intValue();
  12. i = Math.max(i, 127);
  13. // Maximum array size is Integer.MAX_VALUE
  14. h = Math.min(i, Integer.MAX_VALUE - -low);
  15. }
  16. high = h;
  17. cache = new Integer[(high - low) + 1];
  18. int j = low;
  19. for(int k = 0; k < cache.length; k++)
  20. cache[k] = new Integer(j++);
  21. }
  22. private IntegerCache() {}
  23. }

从这2段代码可以看出,在通过valueOf方法创建Integer对象的时候,如果数值在[-128,127]之间,
便返回指向IntegerCache.cache中已经存在的对象的引用,直接指向常量池中的缓存地址 ;否则创建一个新的Integer对象。
上面的代码中i1和i2的数值为100,因此会直接从cache中取已经存在的对象,所以i1和i2指向的是
同一个对象,而i3和i4则是分别指向不同的对象。

发表评论

表情:
评论列表 (有 0 条评论,193人围观)

还没有评论,来说两句吧...

相关阅读

    相关 Java》TreeMap

    红黑树顾名思义就是节点是红色或者黑色的平衡二叉树,它通过颜色的约束来维持着二叉树的平衡。对于一棵有效的红黑树二叉树而言我们必须增加如下规则: 1、每个节点都只能是红色或者黑