Can anyone tell me if this code:
public class OvTester {
@Override
public int hashCode() {
return toString().hashCode();
}
}
determines that the toString method in the OvTester class overrides the toString method in its superclass.
I'd like to know if this is true, and if so how it works?
If it's not true, then is this true:
"the hashCode() method in OvTester must override the same name method in its superclass"
?
If that's not correct then what is correct?
java.lang.Object– Bozho Aug 23 '11 at 11:48