Java Data Type Tutorial - 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 {

  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.