|
2 |
Renamed (got rid of BFF, changed to question form)
|
||
java.util.Object.equals() AND java.util.Object.hasCode(How to ensure hashCode() ARE BFF!!!is consistent with equals()? |
||||
|
1 |
|
||
java.util.Object.equals() AND java.util.Object.hasCode() ARE BFF!!!When overriding the equals() function of java.lang.Object, the javadocs suggest that, "it is generally necessary to override the hashCode method whenever this method is overridden, so as to maintain the general contract for the hashCode method, which states that equal objects must have equal hash codes." The hascode method must return a unique integer for each object (this is easy to do when comparing objects based on memory location, simply return the unique integer address of the object) How should a hashCode() method be overriden so that it returns a unique integer for each object based only on that object's properities?
|
||||
