Hashcode()

3 respostas
ricardo13

olá pessoal,

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 ?

Muito Obrigado

Ricardo

3 Respostas

Dieval_Guizelini

Ricardo,

a rigor,

quando ele não causar colisões… no conjunto de referência. Além de atender as regras descritas no javadoc…

Por isso, quando criamos objetos baseados em registros que possuem PK numéricas, recomenda-se usar o mesmo id como hashcode.

Veja uma boa referência: http://www.javapractices.com/topic/TopicAction.do?Id=28

fw

Dieval_Guizelini

Achei as regras…

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.

Criado 21 de outubro de 2008
Ultima resposta 22 de out. de 2008
Respostas 3
Participantes 3