VOOZH about

URL: https://www.geeksforgeeks.org/java/treeset-iterator-method-in-java/

⇱ TreeSet iterator() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

TreeSet iterator() Method in Java

Last Updated : 26 Nov, 2018
The Java.util.TreeSet.iterator() method is used to return an iterator of the same elements as that of the TreeSet. The elements are returned in random order from what was present in the Tree set. Syntax:
Iterator iterate_value = Tree_Set.iterator();
Parameters: The function does not take any parameter. Return Value: The method iterates over the elements of the Tree set and returns the values(iterators). Below program illustrates the use of Java.util.TreeSet.iterator() method:
Output:
TreeSet: [4, Geeks, To, Welcome]
The iterator values are: 
4
Geeks
To
Welcome
Comment