gpt4 book ai didi

java - (getClass() != obj.getClass()) 对于对象 obj

转载 作者:行者123 更新时间:2023-12-02 01:34:53 25 4
gpt4 key购买 nike

Blockquote

 public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final Person other = (Person) obj;
if ((this.name == null) ? (other.name != null) : !this.name.equals(other.name)) {
return false;
}
if ((this.email == null) ? (other.email != null) : !this.email.equals(other.email)) {
return false;
}
if (this.age != other.age && (this.age == null || !this.age.equals(other.age))) {
return false;
}
return true;
}

我对 this discussion. 中的这段代码有疑问

有这样一行:

    final Person other = (Person) obj;

在此条件语句之后:

    if (getClass() != obj.getClass()) {
return false;
}

如果getClass()返回的类不是Object,例如,在这种情况下很可能是Person,那么就不会它返回false并且条件语句之后的其余代码没有被执行?

最佳答案

obj.getClass() 将返回对象的运行时类,也就是说,它将在运行时检查 Object 引用指向什么。

Java doc 中提到了这一点getClass() 方法的:

Returns the runtime class of this Object

作为一个简单的测试,您可以亲自看到 getClass 检查对象的运行时类型:

public static void main(String[] args) {
String s = "hello";
test(s);
}
public static void test(Object o){
System.out.println(o.getClass());
}

这里的输出将引用 String 类,尽管编译时的引用类型是 Object:

class java.lang.String

因此,在您的方法中,如果将 Person 实例传递给 equals 方法,则不会返回 false。但如果它不是 Person 实例,则 getClass() != obj.getClass() 将为 true 并且 equals 将退出并返回 false 作为返回值。

关于java - (getClass() != obj.getClass()) 对于对象 obj,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55370108/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com