您好,登錄后才能下訂單哦!
廢話不多說(shuō)了,直接給大家貼代碼,具體代碼如下所示:
package com.test; public class Test { public static void main(String []args) { Integer a = 100;//此處若使用new,則==值必為false Integer b = 100; System.out.println(a==b);//true Integer c = 150; Integer d = 150; System.out.println(c==d);//false } }
這是什么原因呢?
1。java在編譯的時(shí)候 Integer a = 100; 被翻譯成-> Integer a = Integer.valueOf(100);
2。比較的時(shí)候仍然是對(duì)象的比較
3。在jdk源碼中
public static Integer valueOf(int i) { final int offset = 128; if (i >= -128 && i <= 127) { // must cache return IntegerCache.cache[i + offset]; //符合值范圍時(shí)候,進(jìn)入也創(chuàng)建好的靜態(tài)IntergerCache,i+offset的值表示去取cache數(shù)組中那個(gè)下標(biāo)的值 } return new Integer(i); //當(dāng)不符合-128 127值范圍時(shí)候。記住用的:new,開辟新的內(nèi)存空間,不屬于IntergerCache管理區(qū) }
而
private static class IntegerCache { private IntegerCache(){} static final Integer cache[] = new Integer[-(-128) + 127 + 1]; //開辟-128到127的內(nèi)存區(qū)。有0的位置哦 static { for(int i = 0; i < cache.length; i++) cache[i] = new Integer(i - 128); //為內(nèi)存區(qū)的數(shù)組每個(gè)對(duì)象賦值 } }
這邊是java為了提高效率,初始化了-128--127之間的整數(shù)對(duì)象,所以在賦值在這個(gè)范圍內(nèi)都是同一個(gè)對(duì)象。
再加一句
Integer a = 100; a++; //這邊a++是新創(chuàng)建了一個(gè)對(duì)象,不是以前的對(duì)象。 public static void main(String []args) { Integer a = 100; Integer b = a;//此時(shí)b指針指向值為100的堆地址 即a的堆地址,a==b成立 a++;//此時(shí)a指向的值發(fā)生變化為101,a指針指向101的堆地址。而b任然指向100 System.out.println(a==b);//false }
總結(jié)
以上所述是小編給大家介紹的JAVA中Integer值的范圍實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。