El método addAll(int, Collection) de Stack Class se utiliza para agregar todos los elementos de la colección pasados como parámetro a esta función en un índice o posición específica de una pila.
Sintaxis:
boolean addAll(int index, Collection C)
Parámetros: Esta función acepta dos parámetros como se muestra en la sintaxis anterior y se describen a continuación.
- index : este parámetro es de tipo de datos entero y especifica la posición en la pila a partir de la cual se insertarán los elementos del contenedor.
- C : Es una colección de ArrayList. Es la colección cuyos elementos se necesitan anexar.
Valor devuelto: el método devuelve True si se realiza al menos una acción de agregar, de lo contrario, False .
El siguiente programa ilustra el método Java.util.Stack.addAll():
Ejemplo 1:
// Java code to illustrate boolean addAll() import java.util.*; import java.util.ArrayList; public class GFG { public static void main(String args[]) { // Creating an empty Stack Stack<String> stack = new Stack<String>(); // Use add() method to add elements in the Stack stack.add("Geeks"); stack.add("for"); stack.add("Geeks"); stack.add("10"); stack.add("20"); // A collection is created Collection<String> c = new ArrayList<String>(); c.add("A"); c.add("Computer"); c.add("Portal"); c.add("for"); c.add("Geeks"); // Displaying the Stack System.out.println("The Stack is: " + stack); // Appending the collection to the Stack stack.addAll(1, c); // Clearing the Stack using clear() and displaying System.out.println("The new Stack is: " + stack); } }
Producción:
The Stack is: [Geeks, for, Geeks, 10, 20] The new Stack is: [Geeks, A, Computer, Portal, for, Geeks, for, Geeks, 10, 20]
Ejemplo 2:
// Java code to illustrate // boolean add(Object element) 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 in the Stack stack.add(10); stack.add(20); stack.add(30); stack.add(40); stack.add(50); // A collection is created Collection<Integer> c = new ArrayList<Integer>(); c.add(1); c.add(2); c.add(3); // Displaying the Stack System.out.println("The Stack is: " + stack); // Appending the collection to the Stack stack.addAll(2, c); // Clearing the Stack using clear() and displaying System.out.println("The new Stack is: " + stack); } }
Producción:
The Stack is: [10, 20, 30, 40, 50] The new Stack is: [10, 20, 1, 2, 3, 30, 40, 50]