El método toArray() de Java LinkedHashSet se usa para formar una array de los mismos elementos que LinkedHashSet. Básicamente, copia todo el elemento de un LinkedHashSet a una nueva array.
Sintaxis:
Object[] arr = LinkedHashSet.toArray()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve una array que contiene elementos similares a LinkedHashSet.
Los siguientes programas ilustran el método LinkedHashSet.toArray():
Programa 1:
// Java code to illustrate toArray() import java.util.*; public class LinkedHashSetDemo { public static void main(String args[]) { // Creating an empty LinkedHashSet LinkedHashSet<String> set = new LinkedHashSet<String>(); // Use add() method to add // elements into the LinkedHashSet set.add("Welcome"); set.add("To"); set.add("Geeks"); set.add("For"); set.add("Geeks"); // Displaying the LinkedHashSet System.out.println("The LinkedHashSet: " + 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 LinkedHashSet: [Welcome, To, Geeks, For] The array is: Welcome To Geeks For
Programa 2:
// Java code to illustrate toArray() import java.util.*; public class LinkedHashSetDemo { public static void main(String args[]) { // Creating an empty LinkedHashSet LinkedHashSet<Integer> set = new LinkedHashSet<Integer>(); // Use add() method to add // elements into the LinkedHashSet set.add(10); set.add(15); set.add(30); set.add(20); set.add(5); set.add(25); // Displaying the LinkedHashSet System.out.println("The LinkedHashSet: " + 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 LinkedHashSet: [10, 15, 30, 20, 5, 25] The array is: 10 15 30 20 5 25