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?
|
If we implement our own keys in Hashtable, then our custom hashtable keys must implement
and
What will be the implementations for these methods?
| ||||
feedback
|
|
Read "Effective Java 2nd Edition", this is a good time for it. HashCode and Equals method in Java object – A pragmatic concept | |||||
feedback
|
|
Effective Java 2nd edition has the best explaination for these two methods: check the gory deailt here. | |||
|
feedback
|
|
Read this article: http://www.ibm.com/developerworks/java/library/j-jtp05273.html | |||
|
feedback
|
|
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 :) | |||||||
feedback
|
|
These methods are used for hashtable implementation to identify elements while inserting and retrieval.
| |||
|
feedback
|