show/hide this revision's text 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()?

show/hide this revision's text 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?


public class People{
   public String name;
   public int age;

   public int hashCode(){
      // How to get a unique integer based on name and age?
   }
}
/*******************************/
public class App{
   public static void main( String args[] ){
       People mike = new People();
       People melissa = new People();
       mike.name = "mike";
       mike.age = 23;
       melissa.name = "melissa";
       melissa.age = 24;
       System.out.println( mike.hasCode() );  // output?
       System.out.println( melissa.hashCode(); // output?
   }
}