1. 程式人生 > >Java Integer快取問題

Java Integer快取問題

之前朋友考我這樣的一個問題:

System.out.println(Integer.valueOf(100) == Integer.valueOf(100));
System.out.println(Integer.valueOf(10000) == Integer.valueOf(10000));

結果是什麼?

false,false?

結果竟是: true,false

不是都是new的新物件嗎?地址不同,== 不應該是false?

憑空猜測沒有意義,看下原始碼:

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

return IntegerCache.cache[i + (-IntegerCache.low)]; 這是什麼?一探究竟:

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() {}
}

原來是做了快取,到在 Java 5 中,Integer.valueOf()方法基於減少建立物件次數和節省記憶體的考慮,快取了[-128,127]之間的數字,這種 Integer 快取策略僅在自動裝箱的時候有用,使用構造器建立的 Integer 物件不能被快取。

其餘包裝類這裡就不一一介紹了。