我有这样的层次结构:
public class A {
public abstract int hashCode();
}
public class B extends A {
public int hashCode(){
//I want this to return the object implementation of hash code
return 0;
}
}
我希望 b.hashCode() 返回 hashCode() 的 Object 实现。不幸的是,B 必须扩展 A,而 A 不能改变。