java中两个Integer类型的值相比较的问题

两两个Integer类型整数进行比较时,一定要先用intValue()方法将其转换为int数之后再进行比较,因为直接使用==比较两个Integer会出现问题。

总结: 当给Integer直接赋值时,如果在-128到127之间相等的话,它们会共用一块内存,所以此时用==比较不会出现问题。而超过这个范围,则对应的Integer对象有多少个就开辟多少个堆内存,所以此时再使用==进行比较的话就会出错

public static void main(String[] args) {
        Integer i = 100;
        Integer j = 100;
        System.out.println(i == j);
        System.out.println(i.equals(j));
        Integer m = 1000;
        Integer n = 1000;
        System.out.println(n == m );
        System.out.println(n.equals(m));
}

//执行结果
//true
//true
//false
//true


==在比较的是两个对象在堆内存中存放的地址;equals比较的是两个对象所指向的内存空间的值是不是相同。


但是通过上面代码的执行结果我们可以明显的发现,Integer属于包装类型,包装类型在使用==进行比较的时候比较的是 i 和 j 在堆内存中存放的地址,使用equal比较的是 i 和 j 所指向的内存空间的值。按照这样的解释,那上面的代码的执行结果应该是:false、true、false、true才是正确的,但是我们的代码执行结果是true 、true、 false、 true。


根据Java编译机制,.java文件在编译以后会生成.class文件给JVM加载执行,于是找到.class文件,反编译看了一下,发现编译器在编译我们的代码时,在我们声明的变量加上了valueOf方法 ,代码变成了如下:

public static void main(String[] args) {
        Integer i = Integer.valueOf(100);
        Integer j = Integer.valueOf(100);
        System.out.println(i == j);
        System.out.println(i.equals(j));
        Integer m = Integer.valueOf(1000);
        Integer n = Integer.valueOf(1000);
        System.out.println(n == m );
        System.out.println(n.equals(m));
    }

我们找到valueOf进去看一下他的代码:

public static Integer valueOf(int i) {
        if (i >= IntegerCache.low && i <= IntegerCache.high)//判断我们传过来的值是否在IntegerCache这个缓存数组里面
            return IntegerCache.cache[i + (-IntegerCache.low)];//如果在的话直接从缓存数组中取就好了
        return new Integer(i);//如果不在的话那就new一个咯
    }

Integer的作者在写这个类时,为了避免重复创建对象,对Integer值做了缓存,如果这个值在缓存范围内,直接返回缓存好的对象,否则new一个新的对象返回,那究竟这个缓存到底缓存了哪些内容呢?看一下IntegerCache这个类:

  private static class IntegerCache {
        static final int low = -128;
        static final int high;
        static final Integer cache[];

        static {
        	/**
        	* 检查java虚拟机有没有配置,如果有的话就取配置,如果没有的话就使用默认的h=127
        	*/
            // 最大值可配置
            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) {
                    // 如果无法将属性解析为int,请忽略它。
                }
            }
            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对象比较数值的话,如果是整型值的话最好调用intValue方法来得到一个int类型的值,当然也可将其转变为float(floatValue),double(longValue)类型来比较。

在JDK API 1.6.0中文版中是这样介绍intValue的,public int intValue() 以int 类型返回Integer的值



转载自:比较两个Integer类型的变量遇到的问题   java中两个Integer类型的值相比较的问题

评论