Thursday, January 22, 2026
HomeLanguagesJavaHashtable isEmpty() Method in Java

Hashtable isEmpty() Method in Java

The java.util.Hashtable.isEmpty() method of Hashtable class is used to check for the emptiness of the table. The method returns True if no key-value pair or mapping is present in the table else False.

Syntax:

Hash_Table.isEmpty()

Parameters: The method does not take any parameters.

Return Value: The method returns boolean true if the table is empty or does not contain any mapping pairs else boolean false.

Below programs illustrates the working of java.util.Hashtable.isEmpty() method:
Program 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());
    }
}


Output:

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

Program 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());
    }
}


Output:

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

Note: The same operation can be performed with any type of variation and combination of different data types.

RELATED ARTICLES

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7220 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS