本篇內(nèi)容主要講解“Java基本類型數(shù)據(jù)類型、包裝類及自動(dòng)拆裝箱舉例分析”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“Java基本類型數(shù)據(jù)類型、包裝類及自動(dòng)拆裝箱舉例分析”吧!
創(chuàng)新互聯(lián)專注于企業(yè)營(yíng)銷型網(wǎng)站、網(wǎng)站重做改版、汝城網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5建站、商城系統(tǒng)網(wǎng)站開(kāi)發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為汝城等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
前言
我們知道基本數(shù)據(jù)類型包括byte, short, int, long, float, double, char, boolean,對(duì)應(yīng)的包裝類分別是Byte, Short, Integer, Long, Float, Double, Character, Boolean。
那么為什么需要包裝類?
JAVA是面向?qū)ο蟮恼Z(yǔ)言,很多類和方法中的參數(shù)都需使用對(duì)象,但基本數(shù)據(jù)類型卻不是面向?qū)ο蟮?,這就造成了很多不便。
如:List
,就無(wú)法編譯通過(guò)
為了解決該問(wèn)題,我們引入了包裝類,顧名思義,就是將基本類型“包裝起來(lái)“,使其具備對(duì)象的性質(zhì),包括可以添加屬性和方法,位于java.lang包下。
拆箱與裝箱
既然有了基本數(shù)據(jù)類型和包裝類,就必然存在它們之間的轉(zhuǎn)換,如:
public static void main(String[] args) { Integer a = 0; for(int i = 0; i < 100; i++){ a += i; }}
將基本數(shù)據(jù)類型轉(zhuǎn)為包裝類的過(guò)程叫“裝箱”;
將包裝類轉(zhuǎn)為基本數(shù)據(jù)類型的過(guò)程叫“拆箱”;
自動(dòng)拆箱與自動(dòng)裝箱
Java為了簡(jiǎn)便拆箱與裝箱的操作,提供了自動(dòng)拆裝箱的功能,這極大地方便了程序員們。那么到底是如何實(shí)現(xiàn)的呢?
上面的例子就是一個(gè)自動(dòng)拆箱與裝箱的過(guò)程,通過(guò)反編譯工具我們得到,
public static void main(String[] args) { Integer a = Integer.valueOf(0); for (int i = 0; i < 100; i++) { a = Integer.valueOf(a.intValue() + i); }}
我們不難發(fā)現(xiàn),主要調(diào)用了兩個(gè)方法,Integer.intValue() 和 Integer.valueOf( int i) 方法
查看Integer源碼,我們找到了對(duì)應(yīng)代碼:
/** * Returns the value of this {@code Integer} as an * {@code int}. */public int intValue() { return value;}
/** * Returns an {@code Integer} instance representing the specified * {@code int} value. If a new {@code Integer} instance is not * required, this method should generally be used in preference to * the constructor {@link #Integer(int)}, as this method is likely * to yield significantly better space and time performance by * caching frequently requested values. * * This method will always cache values in the range -128 to 127, * inclusive, and may cache other values outside of this range. * * @param i an {@code int} value. * @return an {@code Integer} instance representing {@code i}. * @since 1.5 */public static Integer valueOf(int i) { if (i >= IntegerCache.low && i <= IntegerCache.high) return IntegerCache.cache[i + (-IntegerCache.low)]; return new Integer(i);}
很明顯,我們我們得出,Java幫你隱藏了內(nèi)部細(xì)節(jié)。
拆箱的過(guò)程就是通過(guò)Integer 實(shí)體調(diào)用intValue()方法;
裝箱的過(guò)程就是調(diào)用了 Integer.valueOf(int i) 方法,幫你直接new了一個(gè)Integer對(duì)象
那么哪些地方會(huì)進(jìn)行自動(dòng)拆裝箱?
其實(shí)很簡(jiǎn)單
1.添加到集合中時(shí),進(jìn)行自動(dòng)裝箱
2.涉及到運(yùn)算的時(shí)候,“加,減,乘, 除” 以及 “比較 equals,compareTo”,進(jìn)行自動(dòng)拆箱
注意的點(diǎn)
在上述的代碼中,關(guān)于Integer valueOf(int i)方法中有IntegerCache類,在自動(dòng)裝箱的過(guò)程中有個(gè)條件判斷
if (i >= IntegerCache.low && i <= IntegerCache.high)
結(jié)合注釋
This method will always cache values in the range -128 to 127,
inclusive, and may cache other values outside of this range.
大意是:該方法總是緩存-128 到 127之間的值,同時(shí)針對(duì)超出這個(gè)范圍的值也是可能緩存的。
那么為什么可能緩存?其實(shí)在IntegerCache源碼中可以得到答案
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. }}
因?yàn)榫彺孀畲笾凳强梢耘渲玫?。這樣設(shè)計(jì)有一定好處,我們可以根據(jù)應(yīng)用程序的實(shí)際情況靈活地調(diào)整來(lái)提高性能。
與之類似還有:
Byte與ByteCache,緩存值范圍-128到127,固定不可配置
Short與ShortCache,緩存值范圍-128到127,固定不可配置
Long與LongCache,緩存值范圍-128到127,固定不可配置
Character與CharacterCache,緩存值范圍0到127,固定不可配置
到此,相信大家對(duì)“Java基本類型數(shù)據(jù)類型、包裝類及自動(dòng)拆裝箱舉例分析”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!