eu to lendo o livro a KS para certificação e no tópico sobre Collections e Generics ela fala sobre que é necessário a certificação é “Você tem que saber quando um método hashcode() é eficiente ou não”.
Dai lanço a minha pergunta, porém é o que eu não to conseguindo entender, como eu sei que o hashcode() foi bem sobrescrito ?
The general contract of hashCode is:
[list]Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. [/list]
[list]If two objects are equal according to the equals(Object) method, then calling the hashCode method on each of the two objects must produce the same integer result. [/list]
[list]It is not required that if two objects are unequal according to the equals(java.lang.Object) method, then calling the hashCode method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hashtables. [/list]
fw
dreamspeaker
Cuidado com o uso de id´s no hashCode(). Se o objeto não foi persistido provavelmente não existirá id.
Se mais de uma instância da mesma classe estiver nessa situação, podemos ter hashCodes iguais. O contrato permite, mas não é aconselhado.