Wednesday, July 3, 2024
HomeLanguagesJavaTreeSet toArray() method in Java with Example

TreeSet toArray() method in Java with Example

The toArray() method of Java TreeSet is used to form an array of the same elements as that of the TreeSet. Basically, it copies all the element from a TreeSet to a new array.

Syntax:

Object[] arr = TreeSet.toArray()

Parameters: The method does not take any parameters.

Return Value: The method returns an array containing the elements similar to the TreeSet.

Below programs illustrate the TreeSet.toArray() method:

Program 1:




// Java code to illustrate toArray()
  
import java.util.*;
  
public class TreeSetDemo {
    public static void main(String args[])
    {
        // Creating an empty TreeSet
        TreeSet<String>
            set = new TreeSet<String>();
  
        // Use add() method to add
        // elements into the TreeSet
        set.add("Welcome");
        set.add("To");
        set.add("Geeks");
        set.add("For");
        set.add("Geeks");
  
        // Displaying the TreeSet
        System.out.println("The TreeSet: "
                           + set);
  
        // Creating the array and using toArray()
        Object[] arr = set.toArray();
  
        System.out.println("The array is:");
        for (int j = 0; j < arr.length; j++)
            System.out.println(arr[j]);
    }
}


Output:

The TreeSet: [For, Geeks, To, Welcome]
The array is:
For
Geeks
To
Welcome

Program 2:




// Java code to illustrate toArray()
  
import java.util.*;
  
public class TreeSetDemo {
    public static void main(String args[])
    {
        // Creating an empty TreeSet
        TreeSet<Integer>
            set = new TreeSet<Integer>();
  
        // Use add() method to add
        // elements into the TreeSet
        set.add(10);
        set.add(15);
        set.add(30);
        set.add(20);
        set.add(5);
        set.add(25);
  
        // Displaying the TreeSet
        System.out.println("The TreeSet: "
                           + set);
  
        // Creating the array and using toArray()
        Object[] arr = set.toArray();
  
        System.out.println("The array is:");
        for (int j = 0; j < arr.length; j++)
            System.out.println(arr[j]);
    }
}


Output:

The TreeSet: [5, 10, 15, 20, 25, 30]
The array is:
5
10
15
20
25
30

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments