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?
|
|
|||
|
|
|
These methods are used for hashtable implementation to identify elements while inserting and retrieval.
|
||
|
|
|
|
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:
It don't gets much easier :) |
||||||
|
|
|
Effective Java 2nd edition has the best explaination for these two methods: check the gory deailt here. |
||
|
|
|
|
Read "Effective Java 2nd Edition", this is a good time for it. HashCode and Equals method in Java object – A pragmatic concept |
||||
|
|
|
Read this article: http://www.ibm.com/developerworks/java/library/j-jtp05273.html |
||
|
|