I defined an equals method, but Hashtable ignores it. Why?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
closed as not a real question by Dori Apr 9 '11 at 6:56
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
First off, make sure you're using the right collection: you probably want HashMap instead. Second, make sure you've defined equals() correctly (equals(Object o)), and also make sure you've implemented a working hashCode(). |
|||
|
|
|
|
|||||||
|
|
As well as overriding
|
|||
|
|
hashCode()? – asgs Apr 7 '11 at 12:36