Home >Java >javaTutorial >Why Does Java's String hashCode() Use 31 as the Multiplier?
Why Java's hashCode() in String Uses 31 as a Multiplier
In Java, the hash code for a String object is calculated using the formula:
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
where s[i] is the ith character of the string, n is the length of the string, and ^ indicates exponentiation.
The Importance of a Prime Multiplier
One key aspect of this formula is the use of a prime multiplier, in this case, 31. Using a prime number has the advantage of reducing the likelihood of hash collisions. If a non-prime multiplier were used, two strings with the same hash value could share a common factor, making it easier for hash collisions to occur.
Why Not Another Prime Number?
While 31 is an odd prime, there are other prime numbers that could have been chosen, such as 29, 37, or 97. The choice of 31 was based on a combination of factors:
The above is the detailed content of Why Does Java's String hashCode() Use 31 as the Multiplier?. For more information, please follow other related articles on the PHP Chinese website!