Java Set.hashCode()

Syntax

Set.hashCode() has the following syntax.

int hashCode()

Example

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


import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
//w w  w . ja v a2 s .  c  o  m
public class Main {

  public static void main(String[] a) {
    String elements[] = { "A", "B", "C", "D", "E" };
    Set<String> set = new HashSet<String>(Arrays.asList(elements));

    System.out.println(set.hashCode());


  }
}