Java随笔-equals使用习惯

概述

Java中equals用于比较字符串内容。

    /**
     * Compares this string to the specified object.  The result is {@code
     * true} if and only if the argument is not {@code null} and is a {@code
     * String} object that represents the same sequence of characters as this
     * object.
     *
     * <p>For finer-grained String comparison, refer to
     * {@link java.text.Collator}.
     *
     * @param  anObject
     *         The object to compare this {@code String} against
     *
     * @return  {@code true} if the given object represents a {@code String}
     *          equivalent to this string, {@code false} otherwise
     *
     * @see  #compareTo(String)
     * @see  #equalsIgnoreCase(String)
     */
    public boolean equals(Object anObject) {
        if (this == anObject) {
            return true;
        }
        if (anObject instanceof String) {
            String aString = (String)anObject;
            if (!COMPACT_STRINGS || this.coder == aString.coder) {
                return StringLatin1.equals(value, aString.value);
            }
        }
        return false;
    }
    ...
    @IntrinsicCandidate
    public static boolean equals(byte[] value, byte[] other) {
        if (value.length == other.length) {
            for (int i = 0; i < value.length; i++) {
                if (value[i] != other[i]) {
                    return false;
                }
            }
            return true;
        }
        return false;
    }

字符串存储的时候是以字符数组形式进行存储,比较时比较的是字符的编码。若有一个字符编码不同,则两个字符串内容不相等。若是对String属性不太了解,可以看一下 Java随笔-String

使用

public class EqualTest {
    public static void main(String[] args) {
        System.out.println("string".equals(null));
    }
}

结果:

false

但是也有很多将可能为null的变量放在前面进行比较。

    public static void main(String[] args) {
        String str = null;
        System.out.println(str.equals("String"));
    }

结果:

Exception in thread "main" java.lang.NullPointerException: Cannot invoke "String.equals(Object)" because "str" is null
	at equal.EqualTest.main(EqualTest.java:12)

出现了空指针异常。

总结

使用equals进行字符串比较时,若其中一个被比较的字符串已经知道内容,在不为null的情况下建议放在equals前面,将变量放在括号里面进行比较,可以避免空指针异常;若比较的字符串都是变量,建议将其中一个字符串先判空再在放在equals前面进行比较,也可以避免空指针异常。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值