Possible Duplicate:
Why does Java's hashCode() in String use 31 as a multiplier?
@Override public int hashCode() {
int result = 17 + hashDouble(re);
result = 31 * result + hashDouble(im);
return result;
}
This is the code from "Effective Java". Is it widely used in enterprise applications? I am concerned about adding the static values. Or Should we define 17, 31 final variables in some sort of Utility and reference from there?
Also can someone explain what these numbers are for? 31 is just a random prime number?