一个 Employee 类的大致结构:
public class Employee {
...
// Override
public boolean equals(Object otherObject) {
System.out.println("Choose parent");
...
}
// Overload
public boolean equals(Employee otherObject) {
System.out.println("Choose child");
...
}
}
一个测试类:
public class EmployeeTest {
psvm {
Employee e1 = new Employee("lee", 3000, 1999, 10, 1);
Employee e2 = new Employee("lee", 3000, 1999, 10, 1);
Object obj1 = e2;
System.out.println(e1.equals(obj1)); // 1.result: Choose parent
System.out.println(obj1.equals(obj1)); // 2.result: Choose parent
System.out.println(obj1.equals(e1)); // 3.result: Choose parent
System.out.println(e1.equals(e1)); // 4.result: Choose child
}
}
根据 dynamic binding,四个语句都会调用 Employee 中的方法,然后再根据 overloading resolution 进行参数匹配,我的猜想是 1, 2 会匹配 Object otherObject 参数,3, 4 会匹配 Employee otherObject 参数,但实际 3 的匹配和我的设想不一样,我以为这和方法定义的顺序有关,调换了之后并没有用;
Core Java 里面说 overloading resolution 的时候提到:
The situation can get complex because of type conversions (int to double, Manager to Employee, and so on).
所以到底是怎么个回事情...
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.