是否有 Java 标准的“空或等于”静态方法?
为了节省一些键入内容并澄清我的代码,是否有以下方法的标准版本?
public static boolean bothNullOrEqual(Object x, Object y) {
return ( x == null ? y == null : x.equals(y) );
}
为了节省一些键入内容并澄清我的代码,是否有以下方法的标准版本?
public static boolean bothNullOrEqual(Object x, Object y) {
return ( x == null ? y == null : x.equals(y) );
}