java包裝類自動拆裝箱tips(-128到127緩存問題)

-128到127緩存問題

java包裝類很多同學在日常的工作中都會大量使用,它將基本類型封裝成對象後使其也能像普通對象一樣具有面向對象的特性,但是也有一些tips需要注意。

java包裝類中Integer和Long對-128到127的對象會先創建一個緩存池,在使用這個範圍內的對象valueOf方法會直接返回緩存池中的對象,只有不在這個範圍內的對象才重新創建。

以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) {
	// 如果在-128 - 127,則返回緩存對象,如果不在則創建新的對象
        if (i >= IntegerCache.low && i <= IntegerCache.high)
            return IntegerCache.cache[i + (-IntegerCache.low)];
        return new Integer(i);
    }
案例代碼
public class PackClassTest {
    public static void main(String[] args) {
        System.out.println("-------Integer-----------");
        Integer x = new Integer(123);
        Integer y = new Integer(123);
        System.out.println(x == y);
        System.out.println(x.equals(y));

        System.out.println("-------------------");
        Integer z = Integer.valueOf(123);
        Integer w = Integer.valueOf(123);
        System.out.println(z == w);
        System.out.println(z.equals(w));

        System.out.println("--------Long-----------");
        Long a = Long.valueOf(127);
        Long b = Long.valueOf(127);
        System.out.println(a == b);
        System.out.println(a.equals(b));

        System.out.println("-------------------");
        Long c = Long.valueOf(128);
        Long d = Long.valueOf(128);
        System.out.println(c == d);
        System.out.println(c.equals(d));
    }
}

運行結果:

-------Integer-----------
false
true
-------------------
true
true
--------Long-----------
true
true
-------------------
false
true
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章