我是靠谱客的博主 诚心电脑,最近开发中收集的这篇文章主要介绍Interger和Int之间的一道面试题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Interger和Int之间的一道面试题

public class Test {
    public static void main(String[] args) {
        Integer i1 = 100;
        Integer i2 = 100;
        
        Integer i3 = 200;
        Integer i4=200;
        
        System.out.println(i1==i2); 
        System.out.println(i3==i4);
    }
}

上面代码中,结尾的两行输出语句分别是什么呢?

public class Test {
    public static void main(String[] args) {
        Integer i1 = 100;
        Integer i2 = 100;

        Integer i3 = 200;
        Integer i4=200;

        System.out.println(i1==i2);//true
        System.out.println(i3==i4); //false
    }
}

一些新人看到这样的答案一般会十分的疑惑,但是内部的道理却是十分的简单明了;


    /**
     * 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
     */
    @HotSpotIntrinsicCandidate
    public static Integer valueOf(int i) {
        if (i >= IntegerCache.low && i <= IntegerCache.high)
            return IntegerCache.cache[i + (-IntegerCache.low)];
        return new Integer(i);
    }

查看Integer的源码,Integer中存在着这样的一个方法–>valueOf(int i )
根据上面的注解所述,因为在[-128~+127]之间的数字使用的过于频繁和广泛,在JDK5开始,当值处于这个区间的时候,java不会再直接去频繁的new,而是去堆中调用;
而大于或小于这个区间,就会new一个新对象,每一次的地址并不相同,使用==来判断的时候,就会自然的返回了false;
(通过debug的方式,也可以看到,当整形在这个区间中的时候,(如题) i1和i2的地址是相同的,而i3,i4则不然)

最后

以上就是诚心电脑为你收集整理的Interger和Int之间的一道面试题的全部内容,希望文章能够帮你解决Interger和Int之间的一道面试题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部