我是靠谱客的博主 眼睛大小馒头,最近开发中收集的这篇文章主要介绍包装类比较是否相等,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

前段时间刚犯了一个非常低级的错误,就是Long型比较是否相等的时候用了==,明明数值是一样的,但是输出却是false。
Java有8个基本类型,但是它们不具有面向对象的特性,在实际开发中不能够直接参与面向对象的开发,非常不方便,为此Java为8个基本类型提供了对已经的包装类,目的就是为了让基本类型以对象的形式存在,能够参与到面向对象的开发中。
Integer和Long,包装类之间进行比较的时候,尽量使用equals,不然会出错的,因为-128~127之间,不用重新new,有缓存,这是个默认缓存,大家看看源码就知道了

/**
     * Returns a {@code Long} instance representing the specified
     * {@code long} value.
     * If a new {@code Long} instance is not required, this method
     * should generally be used in preference to the constructor
     * {@link #Long(long)}, as this method is likely to yield
     * significantly better space and time performance by caching
     * frequently requested values.
     *
     * Note that unlike the {@linkplain Integer#valueOf(int)
     * corresponding method} in the {@code Integer} class, this method
     * is <em>not</em> required to cache values within a particular
     * range.
     *
     * @param  l a long value.
     * @return a {@code Long} instance representing {@code l}.
     * @since  1.5
     */
    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);
    }

阿里巴巴Java开发规范手册中也有明确规定:
在这里插入图片描述
如果非要用==,就用longValue()进行比较

public static void main(String[] args) {
		Long var1 = 127L;
		Long var2 = 127L;
		System.out.println(var1==var2);
		System.out.println(var1.equals(var2));
		Long num1 = 128L;
		Long num2 = 128L;
		System.out.println(num1==num2);
		System.out.println(num1.longValue()==num2.longValue());
		System.out.println(num1.equals(num2));
	}

结果

true
true
false
true
true

反正我是败在这上面了~ 大家多注意吧。

最后

以上就是眼睛大小馒头为你收集整理的包装类比较是否相等的全部内容,希望文章能够帮你解决包装类比较是否相等所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部