El método Java.util.Stack .isEmpty() en Java se usa para comprobar y verificar si una pila está vacía o no. Devuelve True si la pila está vacía; de lo contrario, devuelve False.
Sintaxis:
Stack.isEmpty()
Parámetros: Este método no toma ningún parámetro.
Valor de retorno: esta función devuelve True si la pila está vacía; de lo contrario, devuelve False .
Los siguientes programas ilustran el método Java.util.Stack.isEmpty():
Programa 1:
// Java code to illustrate isEmpty() 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); // Verifying if the Stack is empty or not System.out.println("Is the Stack empty? " + stack.isEmpty()); // Clearing the Stack stack.clear(); // Displaying the Stack System.out.println("Stack after clear(): " + stack); // Verifying if the Stack is empty or not System.out.println("Is the Stack empty? " + stack.isEmpty()); } }
Producción:
Stack: [Welcome, To, Geeks, 4, Geeks] Is the Stack empty? false Stack after clear(): [] Is the Stack empty? true
Programa 2:
// Java code to illustrate isEmpty() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<Integer> stack = new Stack<Integer>(); // Displaying the Stack System.out.println("Stack: " + stack); // Verifying if the Stack is empty or not System.out.println("Is the Stack empty? " + stack.isEmpty()); } }
Producción:
Stack: [] Is the Stack empty? true