Java Integer.ValueOf()的一些了解
本文是對(duì) Integer.ValueOf()的一些了解,分享給大家
這道題有的人或許做過(guò),也可能選對(duì),但是這其中的道理你卻不一定理解,在這里大牛走過(guò),小白留下一起學(xué)習(xí)。
先來(lái)分析選型A,Integer i01 = 59,是一個(gè)裝箱的過(guò)程,在進(jìn)行i01 == i02的比較過(guò)程中,因?yàn)橛疫吺钦停l(fā)生了拆箱的動(dòng)作,所以進(jìn)行了值得比較,所以返回true。
在這里拿出Integer a = 59,Integer b = 59,這種又會(huì)出現(xiàn)什么狀況呢,如果按照裝箱和拆箱來(lái)看就是true,如果按照對(duì)象來(lái)看,就是false,在你舉棋不定得時(shí)候你就應(yīng)該看看源碼了。
/** * Cache to support the object identity semantics of autoboxing for values between * -128 and 127 (inclusive) as required by JLS. * * The cache is initialized on first usage. The size of the cache * may be controlled by the {@code -XX:AutoBoxCacheMax=<size>} option. * During VM initialization, java.lang.Integer.IntegerCache.high property * may be set and saved in the private system properties in the * sun.misc.VM class. */ 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() {} }
這個(gè)類是Integer類中的一個(gè)靜態(tài)內(nèi)部類,其中的靜態(tài)代碼塊在類進(jìn)行加載的時(shí)候就進(jìn)行了-127-128這些數(shù)字的創(chuàng)建和保存,將他們的引用全部保存在Cache數(shù)組中。
所以當(dāng)用Integer 聲明初始化變量時(shí),會(huì)先判斷所賦值的大小是否在-128到127之間,若在,則利用靜態(tài)緩存中的空間并且返回對(duì)應(yīng)cache數(shù)組中對(duì)應(yīng)引用,存放到運(yùn)行棧中,而不再重新開辟內(nèi)存。
這里你就懂了吧,Integer a = 59,Integer b = 59返回的就是true,Integer a = 300,Integer b = 300在判斷完之后就會(huì)new出來(lái)一個(gè)新的對(duì)象,所以會(huì)返回false。
我們來(lái)分析B選項(xiàng),我們先來(lái)看Value的代碼。
* @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);
和上面的一樣,int進(jìn)去之后首先進(jìn)行判斷,如果在-128-127之間就會(huì)返回引用,否則就在堆上new出來(lái)對(duì)象。所以B選項(xiàng)返回true。
C選項(xiàng)i03返回的是Cache數(shù)組中的引用,而i04返回的是堆上對(duì)象的引用,所以返回的是false。
System.out.println(i02== i04) i02是整型變量,i04是引用,這里又用到了解包,虛擬機(jī)會(huì)把i04指向的數(shù)據(jù)拆箱為整型變量再與之比較,所以比較的是數(shù)值,59==59,返回true.
到此這篇關(guān)于Java Integer.ValueOf()的一些了解的文章就介紹到這了,更多相關(guān)Java Integer.ValueOf()內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. ASP中常用的22個(gè)FSO文件操作函數(shù)整理2. 無(wú)線標(biāo)記語(yǔ)言(WML)基礎(chǔ)之WMLScript 基礎(chǔ)第1/2頁(yè)3. ASP調(diào)用WebService轉(zhuǎn)化成JSON數(shù)據(jù),附j(luò)son.min.asp4. .Net core 的熱插拔機(jī)制的深入探索及卸載問(wèn)題求救指南5. SharePoint Server 2019新特性介紹6. html清除浮動(dòng)的6種方法示例7. 讀大數(shù)據(jù)量的XML文件的讀取問(wèn)題8. ASP.NET Core 5.0中的Host.CreateDefaultBuilder執(zhí)行過(guò)程解析9. React+umi+typeScript創(chuàng)建項(xiàng)目的過(guò)程10. Vue+elementUI下拉框自定義顏色選擇器方式
