El método Java.util.HashSet.isEmpty() se utiliza para comprobar si un HashSet está vacío o no. Devuelve True si HashSet está vacío; de lo contrario, devuelve False.
Sintaxis:
Hash_Set.isEmpty()
Parámetros: Este método no toma ningún parámetro
Valor de retorno: la función devuelve True si el conjunto está vacío; de lo contrario, devuelve False.
El siguiente programa ilustra el método Java.util.HashSet.isEmpty():
// Java code to illustrate contains() import java.io.*; import java.util.HashSet; public class HashSetDemo { public static void main(String args[]) { // Creating an empty HashSet HashSet<String> set = new HashSet<String>(); // Use add() method to add elements into the Set set.add("Welcome"); set.add("To"); set.add("Geeks"); set.add("4"); set.add("Geeks"); // Displaying the HashSet System.out.println("HashSet: " + set); // Check for the empty set System.out.println("Is the set empty: " + set.isEmpty()); // Clearing the set using clear() method set.clear(); // Again Checking for the empty set System.out.println("Is the set empty: " + set.isEmpty()); } }
Producción:
HashSet: [4, Geeks, Welcome, To] Is the set empty: false Is the set 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