Hashtable Constructors
Hashtable ()
Constructs empty hashtable with a default initial capacity 11 and
load factor 0.75.
Hashtable (int initialCapacity)
Constructs empty hashtable with the specified initial capacity and
default load factor 0.75.
Hashtable (int initialCapacity, float loadFactor)
Constructs empty hashtable with the specified initial capacity and
the specified load factor.
Hashtable (Map t)
Constructs a new hashtable with the mappings same as the passed
Map.
|