调用hashCode的Object实现

时间:2013-08-05 22:26:24

标签: java hashcode

我有这样的层次结构:

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不能改变。

1 个答案:

答案 0 :(得分:13)