关于java:经典面试题Integer-c100d100cd-一定是false吗

4次阅读

共计 2263 个字符,预计需要花费 6 分钟才能阅读完成。

置信大家在面试的过程中可能都遇到过这样一道题吧!

public static void main(String[] args) {
        Integer a = 1000,b = 1000;

        Integer c = 100,d = 100;

        System.out.println(a == b);
        System.out.println(c == d);
    }

置信大家得出的答案都是 false true
然而在这里我肯定要说,这个答案不是相对的 c==d 肯定是 true,然而 a ==b 却不肯定就是 false,也有可能是 true。

然而我失去的值是 true,true 如果不置信的同学或者抱有狐疑的同学请往下看!

咱们首先要明确 通常状况下为什么答案会是 false,true。

Integer c = 1000 理论在外部做了 Integer c = Integer.valueOf(100) 的操作。咱们来看一下 Integer.class 的源码。

/**
     * Returns an {@code Integer} instance representing the specified
     * {@code int} value.  If a new {@code Integer} instance is not
     * required, this method should generally be used in preference to
     * the constructor {@link #Integer(int)}, as this method is likely
     * to yield significantly better space and time performance by
     * caching frequently requested values.
     *
     * This method will always cache values in the range -128 to 127,
     * inclusive, and may cache other values outside of this range.
     *
     * @param  i an {@code int} value.
     * @return an {@code Integer} instance representing {@code i}.
     * @since  1.5
     */
    public static Integer valueOf(int i) {if (i >= IntegerCache.low && i <= IntegerCache.high)
            return IntegerCache.cache[i + (-IntegerCache.low)];
        return new Integer(i);
    }

从下面的代码中能够看到,当 i >= IntegerCache.low && i <= IntegerCache.high 的时候会从 cache 数组里间接取值,否则 new 一个新的 Integer 对象。

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.class 源码中 能够看出,low 的默认值是 -128,high 的值与 integerCacheHighPropValue 无关,

String integerCacheHighPropValue = sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");

当咱们未对 vm 中的 Integercache 进行设置的时候其莫认真是 127,cache 数组也就是从 -128 到 127,这也就不难理解为什么。
在开文时提到的经典面试题的后果会是 false 和 true,之所以我前面强调不肯定,就是因为当 ntegerCacheHighPropValue 不为 null 的时候取决于 jvm 中的设置,

在 eclipse 中咱们能够做这样的操作:

这时候再来执行那段代码,你就会失去后果是 true 和 true,下次谁再问你这样的问题,能够大声的通知他不肯定,实力装 13 一波!

起源:https://sourl.cn/PsR8Kv

正文完
 0