El método isEmpty() de ArrayList 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:
list_name.isEmpty()
Parámetro: No acepta ningún parámetro.
Devuelve: Devuelve True si la lista list_name 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 ArrayList // for ArrayList functions import java.util.ArrayList; public class GFG { public static void main(String[] args) { // creating an Empty Integer ArrayList ArrayList<Integer> arr = new ArrayList<Integer>(10); // check if the list is empty or not using function boolean ans = arr.isEmpty(); if (ans == true) System.out.println("The ArrayList is empty"); else System.out.println("The ArrayList is not empty"); // addition of a element to the ArrayList arr.add(1); // check if the list is empty or not ans = arr.isEmpty(); if (ans == true) System.out.println("The ArrayList is empty"); else System.out.println("The ArrayList is not empty"); } }
Producción:
The ArrayList is empty The ArrayList is not empty