关于Integer与int之间比较的问题

Posted 在劫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Integer与int之间比较的问题相关的知识,希望对你有一定的参考价值。

public class Test2{
    public static void main(String[] args){
        int a = 1000;
        int b = 1000;
        Integer wa = a;
        Integer wb = b;
        System.out.println(wa.equals(wb));
        System.out.println(wa==wb);
    }
}

上面程序输出:true false

两个对象之间用等号五号比较,需要用equals进行比较,但是

public class Test2{
    public static void main(String[] args){
        int a = 1;
        int b = 1;
        Integer wa = a;
        Integer wb = b;
        System.out.println(wa.equals(wb));
        //对象用等号比较输出true
        System.out.println(wa==wb);
    }
}

上面程序输出:true true 

对象之间是无法用“==”号进行比较的?为什么输出true呢?

  Integer 的源码中,对传入参数i做了一个if判断。在-128<=i<=127的时候是直接用的int原始数据类型,而超出了这个范围则是new了一个对象。我们知道 == 符号在比较对象的时候是比较的内存地址,而对于原始数据类型是直接比对的数据值。

以上是关于关于Integer与int之间比较的问题的主要内容,如果未能解决你的问题,请参考以下文章

Java包装类,以及Integer与int之间的比较

Integer 和 int 的比较问题

Integer 和 int 的比较问题

经典面试题:Integer类型 ==比较问题

为什么Integer用==比较时127相等而128不相等?

Integer与int