El método isEmpty() de Java AbstractCollection se utiliza para comprobar y verificar si una colección está vacía o no. Devuelve True si la colección está vacía; de lo contrario, devuelve False.
Sintaxis:
AbstractCollection.isEmpty()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: la función devuelve True si la colección está vacía; de lo contrario, devuelve False.
El siguiente programa ilustra el uso del método AbstractCollection.isEmpty():
Programa 1:
// Java code to illustrate isEmpty() method import java.util.*; import java.util.AbstractCollection; public class AbstractCollectionDemo { public static void main(String args[]) { // Creating an empty Collection AbstractCollection<String> abs = new TreeSet<String>(); // Use add() method to add // elements into the Collection abs.add("Welcome"); abs.add("To"); abs.add("Geeks"); abs.add("4"); abs.add("Geeks"); abs.add("TreeSet"); // Displaying the Collection System.out.println("Collection: " + abs); // Check for the empty collection System.out.println("Is the collection empty? " + abs.isEmpty()); // Clearing the collection // using clear() method abs.clear(); // Again Checking for the empty collection System.out.println("Is the collection empty? " + abs.isEmpty()); } }
Producción:
Collection: [4, Geeks, To, TreeSet, Welcome] Is the collection empty? false Is the collection empty? true
Programa 2:
// Java code to illustrate isEmpty() method import java.util.*; import java.util.AbstractCollection; public class AbstractCollectionDemo { public static void main(String args[]) { // Creating an empty Collection AbstractCollection<String> abs = new ArrayList<String>(); // Use add() method to add // elements into the Collection abs.add("Welcome"); abs.add("To"); abs.add("Geeks"); abs.add("4"); abs.add("Geeks"); abs.add("ArrayList"); // Displaying the Collection System.out.println("Collection: " + abs); // Check for the empty collection System.out.println("Is the collection empty? " + abs.isEmpty()); // Clearing the collection using clear() method abs.clear(); // Again Checking for the empty collection System.out.println("Is the collection empty? " + abs.isEmpty()); } }
Producción:
Collection: [Welcome, To, Geeks, 4, Geeks, ArrayList] Is the collection empty? false Is the collection empty? true
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA