Java Hashtable.size()

Syntax

Hashtable.size() has the following syntax.

public int size()

Example

In the following code shows how to use Hashtable.size() method.


//from   w  ww. j  a  v a 2  s  .c o  m
import java.util.Hashtable;

public class Main {
   public static void main(String args[]) {
      // create hash table 
      Hashtable<Integer,String> htable1 = new Hashtable<Integer,String>();      
      
      // put values in table
      htable1.put(1, "A");
      htable1.put(2, "B");
      htable1.put(3, "C");
      htable1.put(4, "from java2s.com");
      
      System.out.println("Size of the hash table is: "+htable1.size()); 
   }    
}

The code above generates the following result.