I can't seem to find it. What is it? THANKS!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
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