java中整数的相等比较

发布于:2023-02-12 ⋅ 阅读:(604) ⋅ 点赞:(0)

前言:“==”比较基本类型的数据的时候是比较两边的数值,而比较引用类型的时候比较的是两边的地址。

在用“==”比较两个数值相等的Integer类型的整数就会出现一个现象

Integer m = 127;
Integer n = 127;
System.out.println(m == n);//返回true

Integer m = 128;
Integer n = 128;
System.out.println(m == n);//返回false

 为什么两个相差1的数,⽐较的结果却不⼀样呢。看⼀下源码

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

Integer i = 128;这种⽅式赋值,会调⽤valueOf⽅法。我们发现这⾥做了⼀些关于IntegerCache的操作。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() {}
    }

Integer类中存在一个缓冲范围,有一个规范叫JSL(Java Language Specification,java语言规范)对Integer的缓冲做了约束,规定其范围为:(-128-127)之间。

这儿的IntegerCache有一个静态的Integer数组,在类加载时就将 -128 到 127 的Integer对象创建了,并保存在cache数组中,一旦程序调用valueOf 方法,如果i的值是在-128 到 127 之间就直接在cache缓存数组中去取Integer对象。

如果超出了范围,会从堆区new一个Integer对象来存放值。

再看其它的包装器:

Boolean:(全部缓存)
Byte:(全部缓存)

Character(<= 127缓存)
Short(-128 — 127缓存)
Long(-128 — 127缓存)

Float(没有缓存)
Doulbe(没有缓存)

这时,我们看下上述代码的内存图

441b0dc517ee4f2ea77b67a46b7e6fe9.png

Java中,在-128~127的Integer值并且以 Integer x = value;

的方式赋值的Integer值在进行==和equals比较时,都会返回true,因为Java里面对处在在-128~127之间的Integer值,用的是原生数据类型int,会在整数型常量内存池里,也就是说这之间的Integer值进行==比较时只是进行int原生数据类型的数值比较,而超出-128~127的范围,进行== 比较时是进行地址及数值比较。

如果通过  Integer x = new Integer("127");

方式创建,还是和以前创建对象引用一样,在堆区中创建一个对象,然后将栈中引用指向这个对象,因此 i7 和 i8两个引用内存地址不同。

所以,综上:

如果你⽤两个Integer类型的整数做相等⽐较
1.如果Integer类型的两个数相等,如果范围在-128~127(默认),那么⽤“==”返回true,其余的范会false。
2.两个基本类型int进⾏相等⽐较,直接⽤==即可。
3.⼀个基本类型int和⼀个包装类型Integer⽐较,⽤==也可,⽐较时候,Integer类型做了拆箱操作。
4.Integer类型⽐较⼤⼩,要么调⽤Integer.intValue()转为基本类型⽤“==”⽐较,要么直接⽤equals⽐较。
扩展:
Long和Short类型也做了相同的处理,只不过最⼤值是不可调的。

参考Long的源码:

public static Long valueOf(long l) {
final int offset = 128;
if (l >= -128 && l <= 127) { // will cache
return LongCache.cache[(int)l + offset];
}
return new Long(l);
}

 参考Short的源码:

public static Short valueOf(short s) {
final int offset = 128;
int sAsInt = s;
if (sAsInt >= -128 && sAsInt <= 127) { // must cache
return ShortCache.cache[sAsInt + offset];
}
return new Short(s);
}

最后,觉得有用的话,可以点赞、收藏,加关注哟,要不下次就找不见了哟!

 

本文含有隐藏内容,请 开通VIP 后查看