El método Java.util.Stack.remove( int index ) se usa para eliminar un elemento de una pila desde una posición o índice específico.
Sintaxis:
Stack.remove(int index)
Parámetros: este método acepta un índice de parámetro obligatorio que es de tipo de datos entero y especifica la posición del elemento que se eliminará de la pila.
Valor de retorno: este método devuelve el elemento que se acaba de eliminar de la pila.
El siguiente programa ilustra el método Java.util.Stack.remove(int index):
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() String rem_ele = stack.remove(4); // Print the removed element System.out.println("Removed element: " + rem_ele); // Print the final Stack System.out.println("Final Stack: " + stack); } }
Producción:
Stack: [Geeks, for, Geeks, 10, 20] Removed element: 20 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() int rem_ele = stack.remove(0); // Print the removed element System.out.println("Removed element: " + rem_ele); // Print the final Stack System.out.println("Final Stack: " + stack); } }
Producción:
Stack: [10, 20, 30, 40, 50] Removed element: 10 Final Stack: [20, 30, 40, 50]