首先感謝http://my.oschina.net/heguangdong/blog/141053 博文的提示。 java
裝箱調用的是valueOf()方法(應該是編譯器執行的)。仍是拿Long類型舉例(Integer是同樣的) spa
源碼以下: .net
public static Long valueOf(long l) { final int offset = 128; if (l >= -128 && l <= 127) { // will cache return LongCache.cache[(int)l + offset]; } return new Long(l); }而LongCache中維護了-128到127的一個常量池,故這些常量對象只會一份不會再new。
private static class LongCache { private LongCache(){} static final Long cache[] = new Long[-(-128) + 127 + 1]; static { for(int i = 0; i < cache.length; i++) cache[i] = new Long(i - 128); } }讓咱們再看看Double的源碼:
public static Double valueOf(double d) { return new Double(d); }每次都是new 的一個對象。這樣就解釋了爲何Double型不能用==的緣由。
另外得注意Long Integer類型使用==的條件。(-128到127) code