I can't seem to find it. What is it? THANKS!
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 Wooble, Brian Roach, Etienne de Martel, Amir Raminfar, Paul Bellora Nov 21 '11 at 19: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.
|
Set does not generate any hashcodes. It depends on hashcodes defined for the objects put into the Set. Any class can override public int hashCode(). |
|||
|
|
|
If you look at the source for |
||||
|
|
|
As "Set" is just an interface, the hashcode will be generated by the actual implementation you're using, e.g. HashSet or TreeSet (or actually, AbstractSet). |
|||||
|
Object.hashCode()? – Etienne de Martel Nov 21 '11 at 19:36