VOOZH about

URL: https://www.geeksforgeeks.org/java/sortedset-toarray-method-in-java-with-examples/

⇱ SortedSet toArray() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

SortedSet toArray() method in Java with Examples

Last Updated : 12 Jul, 2025
The toArray() method of Java SortedSet is used to form an array of the same elements as that of the SortedSet. Basically, it copies all the element from a SortedSet to a new array. Syntax:
Object[] toArray()
Parameters: The method does not take any parameters. Return Value: The method returns an array containing the elements similar to the SortedSet. Note: The toArray() method in SortedSet is inherited from the Set interface in Java. Below programs illustrate the SortedSet.toArray() method: Program 1:
Output:
The SortedSet: [For, Geeks, To, Welcome]
The array is:
For
Geeks
To
Welcome
Program 2:
Output:
The SortedSet: [5, 10, 15, 20, 25, 30]
The array is:
5
10
15
20
25
30
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#toArray()
Comment