中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java的自動裝箱和拆箱源碼分析

發布時間:2022-04-20 17:12:20 來源:億速云 閱讀:111 作者:zzz 欄目:開發技術

這篇“Java的自動裝箱和拆箱源碼分析”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Java的自動裝箱和拆箱源碼分析”文章吧。

    什么叫裝箱 & 拆箱?

    將int基本類型轉換為Integer包裝類型的過程叫做裝箱,反之叫拆箱。

    首先看一段代碼

    public static void main(String[] args) {
        Integer a = 127, b = 127;
        Integer c = 128, d= 128;
        System.out.println(a == b); // true
        System.out.println(c == d); // false
    }

    不知道還有沒有人不知道這段代碼出現true和false的原因。由此我們引出了Java裝箱的這個操作。我們帶著疑問去進行分析。

    裝箱(valueOf())

    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);
    }

    我們可以發現,在最開始有一個判斷,如果這個值的范圍在[-128,127]之間,那么就從這個緩存(Integer數組)中取,如果不在這個范圍那么直接new一個。

    為什么要有[-128,127]的緩存?

    我說說的理解,因為在我們的業務中,可能存在各種狀態和標識等Integer類型的字段,這些值一般都是0,1,2,3之類的,而且出現的比較頻繁,如果沒有緩存,那么就需要頻繁的new對象,然后再釋放,就非常消耗內存空間,所以對于這個緩存就出現了,可以極大的幫助我們優化一些空間上的浪費。

    為什么是[-128,127]?

    這個我看了一下,具體為什么這里就不詳說了,主要還是依賴計算機基礎知識,在你了解了什么是原碼、反碼、補碼。就很容易知道為什么是這個范圍區間了。

    這個值也是可以通過啟動參數進行更改的。

    -XX:AutoBoxCacheMax=(size)

    自動裝箱帶來的性能問題

    那么看到現在你應該明白上面代碼出現不同結果的原因了,那么你有沒有想過,比如我們業務中一個for循環中,出現了統計數據類似這樣的操作,如果存在自動裝箱,那么會出現什么問題?我們看下面一段代碼。

    public static void main(String[] args) {
        long startTime = System.currentTimeMillis();
        Integer count = 0;
        // int count = 0;
        for (int i = 0; i < 5000000; i++) {
            count += i;
        }
        System.out.println("計算時長:" + (System.currentTimeMillis() - startTime) + " ms");
    }
    
    // 執行結果:
    // Integer 計算時長:51 ms
    // int 計算時長:6 ms

    那么通過執行結果可以明顯的發現自動裝箱頻繁的new對象、分配內存,造成時間和空間上的性能損耗。

    小總結

    通過上面的源碼閱讀和測試分析,我們可以得出結論,我們平時在進行計算統計,或者方法入參的時候,應該盡量的避免這種類型轉換的問題。來提升我們整個代碼的執行效率。

    拆箱(intValue)

    拆箱總體沒有什么復雜的邏輯,直接返回這個數值的基本類型。

    補充:自動裝箱、拆箱總是會發生嗎?

    其實不一定。看下面的一段示例代碼,輸出結果已被注釋在輸出語句后面。

    public static void main(String[] args) {
    // TODO 自動生成的方法存根
    Integer a = 1;
    Integer b = 2;
    Integer c = 3;
    Integer d = 3;
    Integer e = 321;
    Integer f = 321;
    Long g = 3L;
    System.out.println(c==d);//true
    //包裝類的==在沒有遇到算術運算的情況下不會自動拆箱
    System.out.println(e==f);//false
    System.out.println(c==(a+b));//true
    System.out.println(c.equals(a+b));//true
    System.out.println(g==(a+b));//true
    //equals方法不會處理數據轉型關系
    System.out.println(g.equals(a+b));//false
    }

    發生自動裝箱、拆箱的情況如下:

    自動裝箱:基本類型賦值給包裝類型。如:Integer i1 = 1;

    自動拆箱:

    1. 包裝類型賦值給基本類型。如:int i2 = new Integer(1);

    2. int類型與Integer類型比較。int類型與Integer類型比較如果值相等則結果總是為true。

    3. Integer類型遇到算術運算

    但是為什么在上例中,System.out.println(c==d);與System.out.println(e==f);輸出的結果不一樣呢?

    主要是因為Integer.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) {
            if (i >= IntegerCache.low && i <= IntegerCache.high)
                return IntegerCache.cache[i + (-IntegerCache.low)];
            return new Integer(i);
        }

    IntegerCache 是Integer的靜態內部類,valueOf()是包裝方法。從源碼中可以看出,cache是一個緩存數組,當valueOf()方法的入參i在[-128,127]區間內,就會返回緩存數組中的Integer值,否則會重新new一個Integer。

    這就是System.out.println(c==d);與System.out.println(e==f);輸出結果不同的原因。c和d在緩存區間內,所以返回的是同一個引用;而e和f不在緩存區間內,返回的都是new Integer,已經不是同一個引用。

    以上就是關于“Java的自動裝箱和拆箱源碼分析”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    泸水县| 静乐县| 金阳县| 南皮县| 成安县| 辽宁省| 甘德县| 巴林右旗| 西乌| 五寨县| 刚察县| 双峰县| 达拉特旗| 聂荣县| 邵东县| 无极县| 香格里拉县| 红原县| 灵台县| 镇康县| 太谷县| 临漳县| 连江县| 阳朔县| 中方县| 河津市| 西丰县| 家居| 康定县| 丘北县| 漯河市| 英超| 利川市| 巴林右旗| 合山市| 滕州市| 城口县| 化德县| 云霄县| 邵阳县| 永安市|