亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java兩個integer數據判斷相等的方法是什么

發布時間:2021-12-24 14:31:48 來源:億速云 閱讀:724 作者:iii 欄目:開發技術

本篇內容介紹了“java兩個integer數據判斷相等的方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

問題案例

來個簡單點的例子

public static void main(String[] args) {
    for (int i = 0; i < 150; i++) {
        Integer a = i;
        Integer b = i;
        System.out.println(i + " " + (a == b));
    }
}

i取值從0到150,每次循環a與b的數值均相等,輸出a == b。運行結果:

0 true
1 true
2 true
3 true
...
126 true
127 true
128 false
129 false
130 false
...

從128開始a和b就不再相等了。

原因分析

首先回顧一下自動裝箱。對于下面這行代碼

Integer a = 1;

變量a為Integer類型,而1為int類型,且Integer和int之間并無繼承關系,按照Java的一般處理方法,這行代碼應該報錯。
但因為自動裝箱機制的存在,在為Integer類型的變量賦int類型值時,Java會自動將int類型轉換為Integer類型,即

Integer a = Integer.valueOf(1);

valueOf()方法返回一個Integer類型值,并將其賦值給變量a。這就是int的自動裝箱。
再看最開始的例子:

public static void main(String[] args) {
    for (int i = 0; i < 150; i++) {
        Integer a = i;
        Integer b = i;
        System.out.println(i + " " + (a == b));
    }
}

每次循環時,Integer a = i和Integer b = i都會觸發自動裝箱,而自動裝箱會將int轉換Integer類型值并返回;我們知道Java中兩個new出來的對象因為時不同的實例,無論如何==都會返回fasle。比如

new Integer(1) == new Integer(1);

就會返回false。

那么例子中Integer a = i和Integer b = i自動裝箱產生的變量a和b就不應該時同一個對象了,那么==的結果應該時false。128以上為false容易理解,但為何0到127時返回true了呢?==返回true的唯一情況是比較的兩個對象為同一個對象,那不妨把例子中a和b的內存地址都打印出來看看:

for(int i=0;i<150;i++){
    Integer a=i;
    Integer b=i;
    System.out.println(a+" "+b+" "+System.identityHashCode(a)+" "+System.identityHashCode(b));
}

identityHashCode()方法可以理解為輸出對應變量的內存地址,輸出為:

0 0 762119098 762119098
1 1 1278349992 1278349992
2 2 1801910956 1801910956
3 3 1468253089 1468253089
...
126 126 1605164995 1605164995
127 127 1318497351 1318497351
128 128 101224864 479240824
129 129 1373088356 636728630
130 130 587071409 1369296745
...

竟然從0到127不同時候自動裝箱得到的是同一個對象!從128開始才是正常情況。

源碼分析

“從0到127不同時候自動裝箱得到的是同一個對象”就只能有一種解釋:自動裝箱并不一定new出新的對象。
既然自動裝箱涉及到的方法是Integer.valueOf(),不妨看看其源代碼:

public static Integer valueOf(int i) {
    if (i >= IntegerCache.low && i <= IntegerCache.high)
        return IntegerCache.cache[i + (-IntegerCache.low)];
    return new Integer(i);
}

其注釋里就直接說明了-128到127之間的值都是直接從緩存中取出的。看看是怎么實現的:如果int型參數i在IntegerCache.low和IntegerCache.high范圍內,則直接由IntegerCache返回;否則new一個新的對象返回。似乎IntegerCache.low就是-128,IntegerCache.high就是127了
IntegerCache的源碼:

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() {}
}

果然在其static塊中就一次性生成了-128到127直接的Integer類型變量存儲在cache[]中,對于-128到127之間的int類型,返回的都是同一個Integer類型對象。

這下真相大白了,整個工作過程就是:Integer.class在裝載(Java虛擬機啟動)時,其內部類型IntegerCache的static塊即開始執行,實例化并暫存數值在-128到127之間的Integer類型對象。當自動裝箱int型值在-128到127之間時,即直接返回IntegerCache中暫存的Integer類型對象

解決方法

既然我們的目的是比較數值是否相等,而非判斷是否為同一對象;而自動裝箱又不能保證同一數值的Integer一定是同一對象或一定不是同一對象,那么就不要用==,直接用equals()好了。實際上,Integer重寫了equals()方法,直接比較對象的數值是否相等。

for (int i = 0; i < 150; i++) {
    Integer a = i;
    Integer b = i;
    System.out.println(i + " " + (a.equals(b)));
}
//這樣返回值就全都是true了。

private final int value;

public boolean equals(Object obj) {
    if (obj instanceof Integer) {
        return value == ((Integer)obj).intValue();
    }
    return false;
}

public int intValue() {
    return value;
}

備注

不僅int,Java中的另外7中基本類型都可以自動裝箱和自動拆箱,其中也有用到緩存。見下表:

基本類型裝箱類型取值范圍是否緩存緩存范圍
byteByte-128 ~ 127-128 ~ 127
shortShort-2^15 ~ (2^15 - 1)-128 ~ 127
intInteger-2^31 ~ (2^31 - 1)-128 ~ 127
longLong-2^63 ~ (2^63 - 1)-128~127
floatFloat----
doubleDouble----
booleanBooleantrue, falsetrue, false
charCharacter\u0000 ~ \uffff

“java兩個integer數據判斷相等的方法是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

林西县| 曲阳县| 安福县| 雷波县| 安陆市| 额尔古纳市| 禄丰县| 肥城市| 错那县| 兴隆县| 固始县| 奎屯市| 孙吴县| 贞丰县| 镇巴县| 望都县| 杭锦旗| 宁武县| 高淳县| 通化市| 勃利县| 临西县| 策勒县| 正宁县| 什邡市| 哈巴河县| 桃园县| 宜兰市| 纳雍县| 沾化县| 东乡县| 马公市| 通山县| 乌海市| 洛阳市| 河东区| 宁都县| 岳普湖县| 遂平县| 都兰县| 宝鸡市|