vote up 1 vote down star

If we implement our own keys in Hashtable, then our custom hashtable keys must implement

public int hashCode()
{
}

and

 public Object equals(Object obj)
   {
   }

What will be the implementations for these methods?

flag

0% accept rate
"public Object equals(Object obj)" must read "public boolean equals(Object obj)". – Tim Büthe Jul 11 at 11:13

5 Answers

vote up 0 vote down

These methods are used for hashtable implementation to identify elements while inserting and retrieval.

  1. hashcode is the key for storing
  2. equals used methods contains, get etc to check the keys.
link|flag
vote up 1 vote down

After you understood it by reading effective java, you might use commons lang EqualsBuilder and HashCodeBuilder to implement it. If the part isn't performance critical, you even can use the refelction method like this:

 public boolean equals(Object obj) {
   return EqualsBuilder.reflectionEquals(this, obj);
 }


public int hashCode() {
   return HashCodeBuilder.reflectionHashCode(this);
 }

It don't gets much easier :)

link|flag
thanks a lot for enlightening me – jezhilvalan Jul 10 at 9:58
I really like the EqualsBuilder and HashCodeBuilder classes, although I typically avoid the reflection methods because of the performance concerns. – harmanjd Jul 10 at 12:43
@harmanjd: Yes, if it is performance critical, you should avoid it, but most of the time it isn't. If you use hibernate for example, it heavily relies on reflection to find differences between object before updating the database. If you do a 10 or 100 millis taking database operation afterwards, the 2 nanoseconds for comparing objects with reflection are just insignificant. – Tim Büthe Jul 11 at 11:11
vote up 2 vote down

Effective Java 2nd edition has the best explaination for these two methods: check the gory deailt here.

link|flag
vote up 3 vote down

Read "Effective Java 2nd Edition", this is a good time for it.

HashCode and Equals method in Java object – A pragmatic concept

Java Equals Implementation

Equals and Hashcode Implementation.

link|flag
thanks a lot for enlightening me – jezhilvalan Jul 10 at 9:50
Have a look to the dfa's post. He provided the link to the exact chapter of Effective Java. My last two links are kinda old. FIrst one is good to go. – Vinegar Jul 10 at 9:52
vote up 1 vote down

Read this article: http://www.ibm.com/developerworks/java/library/j-jtp05273.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.