Collections Data Structure Java

import java.util.Hashtable;
public class Main {
  public static void main(String[] args) {
    Hashtable ht = new Hashtable();
    ht.put("1", "One");
    ht.put("2", "Two");
    ht.put("3", "Three");
    ht.clear();
    System.out.println(ht.size());
  }
}