El método Java.util.Stack.elementAt( int pos ) se usa para buscar o recuperar un elemento en un índice específico de una pila.
Sintaxis:
Stack.elementAt(int pos)
Parámetros: este método acepta un parámetro obligatorio pos de tipo de datos entero que especifica la posición o el índice del elemento que se va a recuperar de la pila.
Valor de retorno: el método devuelve el elemento presente en la posición especificada por el parámetro pos .
Los siguientes programas ilustran el método Java.util.Stack.get():
Programa 1:
// Java code to illustrate elementAt() method import java.util.Stack; 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"); // Displaying the Stack System.out.println("Stack: " + stack); // Fetching the specific element from the Stack System.out.println("The element is: " + stack.elementAt(3)); } }
Producción:
Stack: [Geeks, for, Geeks, 10, 20] The element is: 10
Programa 2:
// Java code to illustrate elementAt() method import java.util.Stack; 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(4); stack.add(5); // Displaying the Stack System.out.println("Stack: " + stack); // Fetching the specific element from the Stack System.out.println("The element is: " + stack.elementAt(1)); } }
Producción:
Stack: [1, 2, 3, 4, 5] The element is: 2