El método Java.util.Stack.firstElement() en Java se usa para recuperar o buscar el primer elemento de la pila. Devuelve el elemento presente en el índice 0 de la pila
Sintaxis:
Stack.firstElement()
Parámetros: El método no toma ningún parámetro.
Valor de retorno: el método devuelve el primer elemento presente en la pila.
Los siguientes programas ilustran el método Java.util.Stack.firstElement():
Programa 1:
// Java code to illustrate firstElement() 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 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); // Displaying the first element System.out.println("The first element is: " + stack.firstElement()); } }
Producción:
Stack: [Welcome, To, Geeks, 4, Geeks] The first element is: Welcome
Programa 2:
// Java code to illustrate firstElement() 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 into the Stack stack.add(10); stack.add(15); stack.add(30); stack.add(20); stack.add(5); // Displaying the Stack System.out.println("Stack: " + stack); // Displaying the first element System.out.println("The first element is: " + stack.firstElement()); } }
Producción:
Stack: [10, 15, 30, 20, 5] The first element is: 10