Hashtable isEmpty() Método en Java

El método java.util.Hashtable.isEmpty() de la clase Hashtable se usa para verificar el vacío de la tabla. El método devuelve True si no hay ningún par clave-valor o asignación presente en la tabla; de lo contrario, False.

Sintaxis:

Hash_Table.isEmpty()

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

Valor de retorno: el método devuelve booleano verdadero si la tabla está vacía o no contiene ningún par de mapeo; de lo contrario, booleano es falso.

Los siguientes programas ilustran el funcionamiento del método java.util.Hashtable.isEmpty():
Programa 1:

// Java code to illustrate the isEmpty() method
import java.util.*;
  
public class Hash_Table_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty Hashtable
        Hashtable<String, Integer> hash_table = 
                       new Hashtable<String, Integer>();
  
        // Inserting elements into the table
        hash_table.put("Geeks", 10);
        hash_table.put("4", 15);
        hash_table.put("Geeks", 20);
        hash_table.put("Welcomes", 25);
        hash_table.put("You", 30);
  
        // Displaying the Hashtable
        System.out.println("The table is: " + hash_table);
  
        // Checking for the emptiness of Table
        System.out.println("Is the table empty? " + 
                                 hash_table.isEmpty());
    }
}
Producción:

The table is: {You=30, Welcomes=25, 4=15, Geeks=20}
Is the table empty? false

Programa 2:

// Java code to illustrate the isEmpty() method
import java.util.*;
  
public class Hash_Table_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty Hashtable
        Hashtable<String, Integer> hash_table = new Hashtable<String, Integer>();
  
        // Displaying the Hashtable
        System.out.println("The table is: " + hash_table);
  
        // Checking for the emptiness of Table
        System.out.println("Is the table empty? " + hash_table.isEmpty());
    }
}
Producción:

The table is: {}
Is the table empty? true

Nota: La misma operación se puede realizar con cualquier tipo de variación y combinación de diferentes tipos de datos.

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

Deja una respuesta

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