Método de eliminación de pila (objeto) en Java con ejemplo

El método Java.util.Stack.remove( Object o ) se usa para eliminar cualquier elemento particular de la pila.

Sintaxis:

Stack.remove(Object o)

Parámetros: Este método acepta un parámetro obligatorio o es del tipo de objeto Pila y especifica el elemento que se eliminará de la Pila.

Valor devuelto: Devuelve True si el elemento especificado se encuentra y se elimina de la pila, de lo contrario, False .

El siguiente programa ilustra el método Java.util.Stack.remove(Object o):

Ejemplo 1:

// Java code to illustrate remove() when position of
// element is passed as parameter
  
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);
  
        // Remove the element using remove()
        boolean res = stack.remove("20");
  
        // Print the removed element
        System.out.println("Was 20 removed: "
                           + res);
  
        // Print the final Stack
        System.out.println("Final Stack: "
                           + stack);
    }
}
Producción:

Stack: [Geeks, for, Geeks, 10, 20]
Was 20 removed: true
Final Stack: [Geeks, for, Geeks, 10]

Ejemplo 2:

// Java code to illustrate remove() when position of
// element is passed as parameter
  
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);
  
        // Output the Stack
        System.out.println("Stack: " + stack);
  
        // Remove the element using remove()
        boolean res = stack.remove("100");
  
        // Print the removed element
        System.out.println("Was 100 removed: "
                           + res);
  
        // Print the final Stack
        System.out.println("Final Stack: "
                           + stack);
    }
}
Producción:

Stack: [10, 20, 30, 40, 50]
Was 100 removed: false
Final Stack: [10, 20, 30, 40, 50]

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 *