VOOZH about

URL: https://www.geeksforgeeks.org/java/vector-iterator-method-in-java-with-examples/

⇱ Vector iterator() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Vector iterator() method in Java with Examples

Last Updated : 11 Jul, 2025

iterator() method of Vector class that is present inside java.util package is used to return an iterator of the same elements as that of the Vector. The elements are returned in random order from what was present in the vector.

Syntax: 

Iterator iterate_value = Vector.iterator();

Parameters: The function does not take any parameter.

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

Example 1:


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

 

Example 2:


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

 
Comment
Article Tags:
Article Tags: