Apila el método removeAllElements() en Java con un ejemplo

El método Java.util.Stack.removeAllElements() se usa para eliminar todos los componentes de esta pila y establece su tamaño en cero.

Sintaxis:

Stack.removeAllElements()

Parámetros: El método no toma ningún parámetro.

Valor devuelto: la función no devuelve ningún valor.

Los siguientes programas ilustran el método Java.util.Stack.removeAllElements().

Ejemplo 1:

// Java code to illustrate removeAllElements()
import java.util.*;
  
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 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);
  
        // removeAllElementsing the Stack
        // using removeAllElements() method
        stack.removeAllElements();
  
        // Displaying the final Stack after removeAllElementsing
        System.out.println("The final Stack: " + stack);
    }
}
Producción:

Stack: [Welcome, To, Geeks, 4, Geeks]
The final Stack: []

Ejemplo 2:

// Java code to illustrate removeAllElements()
import java.util.*;
  
public class GFG {
    public static void main(String args[])
    {
        // Creating an empty Stack
        Stack<Integer> stack = new Stack<Integer>();
  
        // Use add() method to add elements into the Queue
        stack.add(10);
        stack.add(15);
        stack.add(30);
        stack.add(20);
        stack.add(5);
  
        // Displaying the Stack
        System.out.println("Stack: " + stack);
  
        // removeAllElementsing the Stack
        // using removeAllElements() method
        stack.removeAllElements();
  
        // Displaying the final Stack after removeAllElementsing
        System.out.println("The final Stack: " + stack);
    }
}
Producción:

Stack: [10, 15, 30, 20, 5]
The final Stack: []

Publicación traducida automáticamente

Artículo escrito por Code_r y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *