(面试题)关于Integer的比较以及==和equals的区别

**先上段代码

public class Test03 {

    public static void main(String[] args) {
        Integer f1 = 100, f2 = 100, f3 = 150, f4 = 150;

        System.out.println(f1 == f2);//返回true
        System.out.println(f1.equals(f2));//返回true

        System.out.println(f3 == f4);//返回false
        System.out.println(f3.equals(f4));//返回true
    }
}

***解释原因

 

我们先要了解Integer自动封装int类型数据的底层代码:

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

在Integer的代码中IntegerCache.low= - 128 ,IntegerCache.high = 127。当需要封装的数值不在-128~127之间时会new Integer。如果在范围内就直接返回Integer缓存中的对应数字。

要知道,**new出的两个对象地址不同;而返回的缓存中的数字地址相同

**对于==比较的是两个对象的地址,而equals比较的是内容。

所以f1==f2返回true,而f3==f4返回false;

f1.equals(f2)返回true,f3.equals(f4)返回true;

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>