El método isEmpty() de la interfaz List en Java se usa para verificar si una lista está vacía o no. Devuelve verdadero si la lista no contiene elementos; de lo contrario, devuelve falso si la lista contiene algún elemento.
Sintaxis:
boolean isEmpty()
Parámetro: No acepta ningún parámetro.
Devuelve: Devuelve True si la lista no tiene elementos, de lo contrario devuelve False. El tipo de retorno es de tipo de datos booleano.
Error y excepciones: este método no tiene errores ni excepciones.
Programa para demostrar el funcionamiento de isEmpty() en Java:
// Java code to demonstrate the working of // isEmpty() method in List interface import java.util.*; public class GFG { public static void main(String[] args) { // creating an Empty Integer List List<Integer> arr = new ArrayList<Integer>(10); // check if the list is empty or not // using isEmpty() function boolean ans = arr.isEmpty(); if (ans == true) System.out.println("The List is empty"); else System.out.println("The List is not empty"); // addition of a element to // the List arr.add(1); // check if the list is empty or not // after adding an element ans = arr.isEmpty(); if (ans == true) System.out.println("The List is empty"); else System.out.println("The List is not empty"); } }
Producción:
The List is empty The List is not empty
Referencia : https://docs.oracle.com/javase/7/docs/api/java/util/List.html#isEmpty()