El método toArray() de Java TreeSet se utiliza para formar una array de los mismos elementos que la de TreeSet. Básicamente, copia todo el elemento de un TreeSet a una nueva array.
Sintaxis:
Object[] arr = TreeSet.toArray()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve una array que contiene los elementos similares al TreeSet.
Los siguientes programas ilustran el método TreeSet.toArray():
Programa 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]); } }
Producción:
The TreeSet: [For, Geeks, To, Welcome] The array is: For Geeks To Welcome
Programa 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]); } }
Producción:
The TreeSet: [5, 10, 15, 20, 25, 30] The array is: 5 10 15 20 25 30