HashSet: toArray() : HashSet « java.util « Java by API






HashSet: toArray()

 


import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

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));

    Object[] arrObj = set.toArray();

    for (int i = 0; i < arrObj.length; i++) {
      System.out.println(arrObj[i]);
    }

    System.out.println(set); 
  }
} 

   
  








Related examples in the same category

1.new HashSet < E > ()
2.new HashSet(Collection c)
3.HashSet: add(E o)
4.HashSet: addAll(Collection c)
5.HashSet: clear()
6.HashSet: clone()
7.HashSet: contains(Object o)
8.HashSet: containsAll(Collection c)
9.HashSet: isEmpty()
10.HashSet: iterator()
11.HashSet: removeAll(Collection c)
12.HashSet: size()