Hashtable in java
Java Hashtable
class is available since jdk1.0 which is oldest class in java present in
java.util package. Java Hashtable
internally contains buckets where the key/value pairs are stored in buckets.
A Hashtable
class is an array of a list structure. Each list is known as a bucket. The
position of the bucket is identified by calling the hashcode() method.
read more..
0 comments:
Post a Comment