El método java.util.Stack.copyInto() se usa para copiar todos los componentes de esta Pila a otra Pila, teniendo suficiente espacio para contener todos los componentes de la Pila. Cabe señalar que el índice de los elementos permanece sin cambios. Los elementos presentes en la Pila son reemplazados por los elementos de la Pila.
Sintaxis:
Stack.copyInto(Object Stack[])
Parámetros: El parámetro Stack[] es del tipo Stack. Esta es la Pila en la que se copiarán los elementos de la Pila.
Valor devuelto: el método es de tipo nulo y no devuelve ningún valor.
Excepción: el método arroja NullPointerException si la pila es NULL.
Los siguientes programas ilustran el método Java.util.Stack.copyInto():
Programa 1:
// Java code to illustrate copyInto() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<String> stack = new Stack<String>(); // Use add() method to add elements into the Stack stack.add("Welcome"); stack.add("To"); stack.add("Geeks"); stack.add("4"); stack.add("Geeks"); // Displaying the Stack System.out.println("Stack: " + stack); // Creating an Stack String arr[] = new String[6]; arr[0] = "Hello"; arr[1] = "World"; // Displaying the initial Stack System.out.println("The initial Stack is: "); for (String str : arr) System.out.println(str); // Copying stack.copyInto(arr); // The final Stack System.out.println("The final Stack is: "); for (String str : arr) System.out.println(str); } }
Producción:
Stack: [Welcome, To, Geeks, 4, Geeks] The initial Stack is: Hello World null null null null The final Stack is: Welcome To Geeks 4 Geeks null
Programa 2:
// Java code to illustrate copyInto() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<Integer> stack = new Stack<Integer>(); // Use add() method to add elements into the Stack stack.add(10); stack.add(20); stack.add(30); stack.add(40); stack.add(50); // Displaying the Stack System.out.println("Stack: " + stack); // Creating an Stack Integer arr[] = new Integer[6]; arr[0] = 50; arr[1] = 60; arr[2] = 70; arr[3] = 80; arr[4] = 90; // Displaying the initial Stack System.out.println("The initial Stack is: "); for (Integer str : arr) System.out.println(str); // Copying stack.copyInto(arr); // The final Stack System.out.println("The final Stack is: "); for (Integer str : arr) System.out.println(str); } }
Producción:
Stack: [10, 20, 30, 40, 50] The initial Stack is: 50 60 70 80 90 null The final Stack is: 10 20 30 40 50 null