1. 程式人生 > >java引用型別和基本型別的比較

java引用型別和基本型別的比較

引用型別和基本型別的分類,不在寫了,網上有很多。

我們知道:
當兩個基本型別使用”==”比較時,他們比較的是
當兩個引用型別使用”==”比較時,他們比較的是地址
當兩個引用型別使用方法equals()比較時,他們比較的是

但當基本型別和他的包裝類(引用型別)使用”==”比較時,
他們的結果又是如何呢?

下面我們使用Integer和int進行說明。
Integer是int的包裝類。 int 基本型別, Integer 為引用型別。
看個例子:

int i = 1234;
Integer i1 = new Integer(1234);
Integer i2 = new Integer(1234
); System.out.print("i1 == i2 : "+(i1 == i2)); System.out.println("\ti1.equals(i2) : "+(i1.equals(i2))); System.out.print("i == i1 : "+(i == i1)); System.out.println("\t\ti1.equals(i) : "+(i1.equals(i))); System.out.print("i == i2 : "+(i == i2)); System.out.println("\t\ti2.equals(i) : "+(i2.equals(i)));

列印:
i1 == i2 : false i1.equals(i2) : true
i == i1 : true i1.equals(i) : true
i == i2 : true i2.equals(i) : true

我們可以看到 i == i1, i == i2, i1 != i2,
但使用equals()他們都是相等的。

接著我們來看看jdk1.8中Integer類中的方法equals()

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

可以觀察到使用equals(),他們比較的是

總結:當比較基本型別和他的包裝類(引用型別)使用”==”和方法equals()比較時,他們比較的都是

Integer和其它基本型別都相同,大家有興趣可以去證明,在此我都不在寫了。