Friday, September 19, 2025
HomeLanguagesJavaHashSet iterator() Method in Java

HashSet iterator() Method in Java

The Java.util.HashSet.iterator() method is used to return an iterator of the same elements as the hash set. The elements are returned in random order from what present in the hash set.

Syntax:

Iterator iterate_value = Hash_Set.iterator();

Parameters: The function does not take any parameter.

Return Value: The method iterates over the elements of the hash set and returns the values(iterators).

Below program illustrate the Java.util.HashSet.iterator() method:




// Java code to illustrate iterator()
import java.util.*;
import java.util.HashSet;
  
public class HashSetDemo {
    public static void main(String args[])
    {
        // Creating an empty HashSet
        HashSet<String> set = new HashSet<String>();
  
        // Use add() method to add elements into the Set
        set.add("Welcome");
        set.add("To");
        set.add("Geeks");
        set.add("4");
        set.add("Geeks");
  
        // Displaying the HashSet
        System.out.println("HashSet: " + set);
  
        // Creating an iterator
        Iterator value = set.iterator();
  
        // Displaying the values after iterating through the set
        System.out.println("The iterator values are: ");
        while (value.hasNext()) {
            System.out.println(value.next());
        }
    }
}


Output:

HashSet: [4, Geeks, Welcome, To]
The iterator values are: 
4
Geeks
Welcome
To
RELATED ARTICLES

Most Popular

Dominic
32302 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6666 POSTS0 COMMENTS
Nicole Veronica
11841 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6745 POSTS0 COMMENTS