3

我有这样的层次结构:

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

4

1 回答 1

13

刚回来System.identityHashCode(this)

于 2013-08-05T22:28:03.907 回答