1
vote
5answers
101 views
Implementation for custom keys in Hashtable
If we implement our own keys in Hashtable, then our custom hashtable keys must implement
public int hashCode()
{
}
and
public Object equals(Object …
