In my application, I have model classes of the following form:
class Book
{
private int ID;
private String title;
//other code
}
Now my question is two part:
Is the following a good implementation of the equals() method?
public boolean equals(Object o) { if(o == null) { return false; } if(!(o instanceof Book)) { return false; } Book other = (Book)o; if(o.getID() == ID) { return true; } return false; }I know that equals() implementation largely depends on my application business logic. But If two Books have the same ID then they ideally must be the same Book. Hence I am confused as to whether I should check for equality for other value fields as well [title, price etc].
Is this a good implementation of the hashCode() method:
public int hashCode() { return ID; }My thinking is that different books will have different IDs and if two books have the same ID they they are equal. Hence the above implementation will ensure a good distribution of the hashcode in context of my application.