List of usage examples for java.util HashSet HashSet
public HashSet(int initialCapacity, float loadFactor)
From source file:Main.java
public static void main(String args[]) { HashSet<String> hs = new HashSet<String>(20, 0.75F); hs.add("java2s.com"); hs.add("j a v a2s.com"); System.out.println(hs);/*w w w. j a v a 2 s. c o m*/ }