Java Collection Tutorial - 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;
//from w w  w . j a va  2  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());


  }
}

The code above generates the following result.