![]() |
VOOZH | about |
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:
Vector: [Welcome, To, Geeks, 4, Geeks] The iterator values are: Welcome To Geeks 4 Geeks
Example 2:
Vector: [10, 20, 30, 40, 50] The iterator values are: 10 20 30 40 50