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