Open In App
Related Articles

Stack iterator() method in Java with Example

Improve Article
Improve
Save Article
Save
Like Article
Like

The Java.util.Stack.iterator() method is used to return an iterator of the same elements as that of the Stack. The elements are returned in random order from what was present in the stack.

Syntax:

Iterator iterate_value = Stack.iterator();

Parameters: The function does not take any parameter.

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

Below program illustrates the use of Java.util.Stack.iterator() method:

Example 1:




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


Output:

Stack: [Welcome, To, Geeks, 4, Geeks]
The iterator values are: 
Welcome
To
Geeks
4
Geeks

Example 2:




// Java code to illustrate hashCode()
  
import java.util.*;
  
public class StackDemo {
    public static void main(String args[])
    {
        // Creating an empty Stack
        Stack<Integer> stack
            = new Stack<Integer>();
  
        // Use add() method
        // to add elements into the Stack
        stack.add(10);
        stack.add(20);
        stack.add(30);
        stack.add(40);
        stack.add(50);
  
        // Displaying the Stack
        System.out.println("Stack: " + stack);
  
        // Creating an iterator
        Iterator value = stack.iterator();
  
        // Displaying the values
        // after iterating through the stack
        System.out.println("The iterator values are: ");
        while (value.hasNext()) {
            System.out.println(value.next());
        }
    }
}


Output:

Stack: [10, 20, 30, 40, 50]
The iterator values are: 
10
20
30
40
50

Feeling lost in the vast world of Backend Development? It's time for a change! Join our Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
  • Comprehensive Course
  • Expert Guidance for Efficient Learning
  • Hands-on Experience with Real-world Projects
  • Proven Track Record with 100,000+ Successful Geeks

Last Updated : 24 Dec, 2018
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials