欢迎来到天天文库
浏览记录
ID:30778101
大小:77.17 KB
页数:5页
时间:2019-01-03
《java学习之自动装箱和自动拆箱源码分析-java开发java经验技巧》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、Java学习Z自动装箱和自动拆箱源码分析-编程开发技术Java学习之自动装箱和自动拆箱源码分析原文出处:等风的草自动装箱(boxing)和自动拆箱(unboxing)首先了解下Java的四类八种基本数据类型基本类型占用空间(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中所谓的装箱通俗点就是:八种基本数据类型在某些条件下使用时,会口动变为对应的包装器类型。如下清单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的原因:当包装器类型进行比较时,i3会调用Integer.valueOf自动装箱基本数据类型为包装器类型。/***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方法的实现是类似的;2.Double、Float的valueOf方法的实现是类似的。3.Boolean的valueOf方法的实现是个三口运算,形如^??return?(b???ra^E?:?MLSE);??v自动拆箱JQV3中所谓的拆箱通俗点就是:八种包装器类型在某些条件卜•使用时,会口动变为对应的基本数据类型。清单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的原因:当程序执行到第10句时,i4会调用Integer.intValue方法自动拆箱包装器类型为基木数据类型。/***Returnsthevalueofthis{@codeInteger}asan*{@codeint}.*/publicintintValue(){returnvalue;}从源码可以看出,当包装器类型和基本数据类型进行“二二”比较时,包装器类型会自动拆箱为基本数据类型。
9、清单3内容如F:@TestpublicvoidunboxingTest(){Integeril二17;Integeri2=17;Integeri3=137;Integeri4=137;//二二System,out•println(il
此文档下载收益归作者所有