I read using another prime then 31 for hash code generation is better.
How can I change the value in Eclipse of the hashCode generator to another value then 31?
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.
|
|
This is probably too obvious, but unless you are generating a very large number of classes that override equals and hashCode, you could just manually edit the Eclipse code to substitute your own prime. Change the line:
to
or whatever prime you prefer. However, I think you would be better off sticking with 31, because any use of hashCode is likely to have been tested with it. |
|||
|