Open In App

Vector iterator() method in Java with Examples

Last Updated : 11 Jul, 2025
Comments
Improve
Suggest changes
2 Likes
Like
Report

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

 

Article Tags :
Practice Tags :

Similar Reads