資源描述:
《java學(xué)習(xí)之自動裝箱和自動拆箱源碼分析-java開發(fā)java經(jīng)驗技巧》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫。
1、Java學(xué)習(xí)Z自動裝箱和自動拆箱源碼分析-編程開發(fā)技術(shù)Java學(xué)習(xí)之自動裝箱和自動拆箱源碼分析原文出處:等風(fēng)的草自動裝箱(boxing)和自動拆箱(unboxing)首先了解下Java的四類八種基本數(shù)據(jù)類型基本類型占用空間(Byte)表示范圍包裝器類型boolean1/8true
2、falseBooleanchar2-128^127Characterbyte1-128^127Byteshort2-2?15~2?15-1Shortint4-2?31~2?31-1Integerlong8-2?63~2?63-1Longfloat4-3?4
3、03E38~3?403E38Floatdouble8-1.798E308~1.798E308Double自動裝箱Java中所謂的裝箱通俗點就是:八種基本數(shù)據(jù)類型在某些條件下使用時,會口動變?yōu)閷?yīng)的包裝器類型。如下清單1:?TestpublicvoidboxingTest(){Integeri1二17;Tntegeri2=17;Integeri3=137;Integeri4=137;System.out?println(il二二i2);11System,out.println(i3二二i4);輸出:truefalse解釋下清單1第11
4、句輸出true的原因:當(dāng)包裝器類型進(jìn)行比較時,i3會調(diào)用Integer.valueOf自動裝箱基本數(shù)據(jù)類型為包裝器類型。/***Returnsan{?codeInteger}instaneerepresentingthespecified*{@codeint}value.Tfanew{@codeTnteger)instanceisnot*required,thismethodshouldgencreillybeusedinprefercnccto*theconstructor{@linkftlnteger(int)},asthism
5、ethodislikely*toyieldsignificantlybetterspaceandtimeperformanceby*cachingfrequentlyrequestedvalues.**Thismethodwillalwayscachevaluesintherange-128to127,*inclusive,andmaycacheothervaluesoutsideofthisrange.**?paramian{?codeint}value.*@returnan{@codeTnteger)instancerepres
6、enting{@codei).*@since1.5*/publicstaticIntegervalueOf(inti){if(i>二IntegerCache.low&&i〈二IntegerCache.high)returnTntegerCache.cache[i+(TntegerCache.1ow)];returnnewInteger(i);在low~high(-128~127),從源碼中可以看出,Integer對象自動緩存int值范如果超出這個范圍則會自動裝箱為包裝類。Note:1.Integer、Short>Byte>Chara
7、cter、Long這幾個包裝類的valueOf方法的實現(xiàn)是類似的;2.Double、Float的valueOf方法的實現(xiàn)是類似的。3.Boolean的valueOf方法的實現(xiàn)是個三口運算,形如^??return?(b???ra^E?:?MLSE);??v自動拆箱JQV3中所謂的拆箱通俗點就是:八種包裝器類型在某些條件卜?使用時,會口動變?yōu)閷?yīng)的基本數(shù)據(jù)類型。清單2:@TestpublicvoidunboxingTest(){Integeril二17;inti2=17;inti3二137;Integeri4二137;System,ou
8、t.println(il==i2);10System,out.println(i3二二i4);輸出:truetrue解釋下清單2第10句輸出true的原因:當(dāng)程序執(zhí)行到第10句時,i4會調(diào)用Integer.intValue方法自動拆箱包裝器類型為基木數(shù)據(jù)類型。/***Returnsthevalueofthis{@codeInteger}asan*{@codeint}.*/publicintintValue(){returnvalue;}從源碼可以看出,當(dāng)包裝器類型和基本數(shù)據(jù)類型進(jìn)行“二二”比較時,包裝器類型會自動拆箱為基本數(shù)據(jù)類型。
9、清單3內(nèi)容如F:@TestpublicvoidunboxingTest(){Integeril二17;Integeri2=17;Integeri3=137;Integeri4=137;//二二System,out?println(il