El método Java.util.Stack.removeAll(Collection col) se utiliza para eliminar todos los elementos de la pila, presentes en la colección especificada.
Sintaxis:
Stack.removeAll(Collection col)
Parámetros: este método acepta un parámetro obligatorio col que es la colección cuyos elementos se eliminarán de la pila.
Valor de retorno: este método devuelve verdadero si la pila se modifica debido a la operación, de lo contrario, es falso .
Excepción: el método lanza NullPointerException si la colección especificada es nula.
Los siguientes programas ilustran el método Java.util.Stack.removeAll(Collection col):
Programa 1:
// Java code to illustrate removeAll() 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 in the Stack stack.add("Geeks"); stack.add("for"); stack.add("Geeks"); stack.add("10"); stack.add("20"); // Output the Stack System.out.println("Stack: " + stack); // Creating an empty Stack Stack<String> colstack = new Stack<String>(); // Use add() method to add elements in the Stack colstack.add("Geeks"); colstack.add("for"); colstack.add("Geeks"); // Remove the head using remove() boolean changed = stack.removeAll(colstack); // Print the result if (changed) System.out.println("Collection removed"); else System.out.println("Collection not removed"); // Print the final Stack System.out.println("Final Stack: " + stack); } }
Producción:
Stack: [Geeks, for, Geeks, 10, 20] Collection removed Final Stack: [10, 20]
Programa 2:
// Java code to illustrate removeAll() 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(1); stack.add(2); stack.add(3); stack.add(10); stack.add(20); // Output the Stack System.out.println("Stack: " + stack); // Creating an empty Stack Stack<Integer> colstack = new Stack<Integer>(); // Use add() method to add elements in the Stack colstack.add(30); colstack.add(40); colstack.add(50); // Remove the head using remove() boolean changed = stack.removeAll(colstack); // Print the result if (changed) System.out.println("Collection removed"); else System.out.println("Collection not removed"); // Print the final Stack System.out.println("Final Stack: " + stack); } }
Producción:
Stack: [1, 2, 3, 10, 20] Collection not removed Final Stack: [1, 2, 3, 10, 20]