Método NavigableSet isEmpty() en Java

El método java.util.NavigableSet.isEmpty() se utiliza para comprobar si un NavigableSet está vacío o no. Devuelve True si NavigableSet está vacío; de lo contrario, devuelve False.

Sintaxis:

boolean isEmpty()

Parámetros: Este método no toma ningún parámetro

Valor devuelto: el método devuelve True si el NavigableSet está vacío; de lo contrario, devuelve False.

El siguiente programa ilustra el método java.util.NavigableSet.isEmpty():

// Java code to illustrate isEmpty()
import java.io.*;
import java.util.*;
  
public class NavigableSetDemo {
    public static void main(String args[])
    {
        // Creating an empty NavigableSet
        NavigableSet<String> st = new TreeSet<String>();
  
        // Use add() method to add elements into
        // the NavigableSet
        st.add("Welcome");
        st.add("To");
        st.add("Geeks");
        st.add("4");
        st.add("Geeks");
  
        // Displaying the NavigableSet
        System.out.println("NavigableSet: " + st);
  
        // Check for the empty NavigableSet
        System.out.println("Is the NavigableSet empty? "
                           + st.isEmpty());
  
        // Clearing the NavigableSet using clear() method
        st.clear();
  
        // Again Checking for the empty NavigableSet
        System.out.println("Is the NavigableSet empty? "
                           + st.isEmpty());
    }
}
Producción:

NavigableSet: [4, Geeks, To, Welcome]
Is the NavigableSet empty? false
Is the NavigableSet empty? true

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *