Integer的比较问题

代码如下

       Integer a=127;
         Integer b=127;
         Integer c=128;
         Integer d=128;
         System.out.println(a==b);//true
         System.out.println(c==d);//false    

编译成class文件

         Integer a=Integer.valueOf(127);
         Integer b=Integer.valueOf(127);
         Integer c=Integer.valueOf(128);
         Integer d=Integer.valueOf(128);
         System.out.println(a==b);//true
         System.out.println(c==d);//false    

查看integer底层源码

private static class IntegerCache {
        static final int low = -128;
        static final int high;
        static final Integer cache[];

        static {
            // high value may be configured by property
            int h = 127;
            String integerCacheHighPropValue =
                sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
            if (integerCacheHighPropValue != null) {
                try {
                    int i = parseInt(integerCacheHighPropValue);
                    i = Math.max(i, 127);
                    // Maximum array size is Integer.MAX_VALUE
                    h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
                } catch( NumberFormatException nfe) {
                    // If the property cannot be parsed into an int, ignore it.
                }
            }
            high = h;

            cache = new Integer[(high - low) + 1];
            int j = low;
            for(int k = 0; k < cache.length; k++)
                cache[k] = new Integer(j++);

            // range [-128, 127] must be interned (JLS7 5.1.7)
            assert IntegerCache.high >= 127;
        }

        private IntegerCache() {}
    }

    public static Integer valueOf(int i) {
        if (i >= IntegerCache.low && i <= IntegerCache.high)
            return IntegerCache.cache[i + (-IntegerCache.low)];
        return new Integer(i);
    }

通过看源码能够知道,整数类型在-128~127之间时,会使用缓存,

造成的效果就是,如果已经创建了一个相同的整数,使用valueOf创建第二次时,不会使用new关键字,而用已经缓存的对象。

所以使用valueOf方法创建两次对象,若对应的数值相同,且数值在-128~127之间时,两个对象都指向同一个地址。

  

posted @ 2021-08-27 00:16  雨后星辰zxj  阅读(37)  评论(0编辑  收藏  举报