Java String.hashCode()
Syntax
String.hashCode() has the following syntax.
public int hashCode()
Example
In the following code shows how to use String.hashCode() method.
public class Main {
/*www . j a v a 2 s . co m*/
public static void main(String[] args) {
String str = "java2s.com";
System.out.println("Hash code of string is = " + str.hashCode());
}
}
The code above generates the following result.