I want to get hashCode of a reference, i.e. Object.hashCode() or something similar. ref.hashCode() won't work since this perticular class overrides hashCode(). Is there a simple way to get Object.hashCode() or some other hash of a ref?

Right now I am thinking of adding a method
'int refHashCode() { return super.hashCode(); }' since this class subclasses Object.

Raghu.

Reply via email to