您好,登錄后才能下訂單哦!
這篇“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裝箱的這個操作。我們帶著疑問去進行分析。
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一個。
我說說的理解,因為在我們的業務中,可能存在各種狀態和標識等Integer類型的字段,這些值一般都是0,1,2,3之類的,而且出現的比較頻繁,如果沒有緩存,那么就需要頻繁的new對象,然后再釋放,就非常消耗內存空間,所以對于這個緩存就出現了,可以極大的幫助我們優化一些空間上的浪費。
這個我看了一下,具體為什么這里就不詳說了,主要還是依賴計算機基礎知識,在你了解了什么是原碼、反碼、補碼。就很容易知道為什么是這個范圍區間了。
這個值也是可以通過啟動參數進行更改的。
-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對象、分配內存,造成時間和空間上的性能損耗。
通過上面的源碼閱讀和測試分析,我們可以得出結論,我們平時在進行計算統計,或者方法入參的時候,應該盡量的避免這種類型轉換的問題。來提升我們整個代碼的執行效率。
拆箱總體沒有什么復雜的邏輯,直接返回這個數值的基本類型。
其實不一定。看下面的一段示例代碼,輸出結果已被注釋在輸出語句后面。
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;
自動拆箱:
包裝類型賦值給基本類型。如:int i2 = new Integer(1);
int類型與Integer類型比較。int類型與Integer類型比較如果值相等則結果總是為true。
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的自動裝箱和拆箱源碼分析”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。