Reputation: 3530
Can someone tell me what are the maximum and minimum int
values that the Java String.hashCode()
method can return?
Upvotes: 8
Views: 14075
Reputation: 63807
String.hashCode()
returns an int
calculated by using the below formula:
public int hashCode()
Returns a hash code for this string.
The hash code for a String object is computed as
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
using int arithmetic, where
s[i]
is the i-th character of the string, n is the length of the string, and ^ indicates exponentiation. (The hash value of the empty string is zero.)
The minimum and max value can be found with the below constants.
System.out.println(java.lang.Integer.MAX_VALUE); // 2147483647
System.out.println(java.lang.Integer.MIN_VALUE); // -2147483648
Upvotes: 9
Reputation: 6018
Java int is 4 bytes, signed (two's complement). -2,147,483,648 to 2,147,483,647. Like all numeric types ints may be cast into other numeric types (byte, short, long, float, double). When lossy casts are done (e.g. int to byte) the conversion is done modulo the length of the smaller type.
Upvotes: 3
Reputation: 1720
From the documentation, given that the power to which something is raised depends on the length of the String (which is practically unlimited, as far as I know), I would say that the maximum and minimum must be Integer.MAX_VALUE (2^31 - 1) and Integer.MIN_VALUE (-2^31), respectively.
Upvotes: 2