Java Map.hashCode()

Syntax

Map.hashCode() has the following syntax.

int hashCode()

Example

In the following code shows how to use Map.hashCode() method.


 //from w  ww. j a v  a  2s  .c o  m
import java.util.HashMap;
import java.util.Map;

public class Main {
  public static void main(String[] a) {
    Map<String,String> map = new HashMap<String,String>();
    map.put("key1", "value1");
    map.put("key2", "value2");
    map.put("key3", "value3");
    map.clear();

    System.out.println(map.hashCode());
  }
}

The code above generates the following result.