Java / Collections
What is the difference between HashMap and Hashtable?
HashMap allows one null key and any number of null values while Hashtable does not allow null as either keys or values.
HashMap is not synchronized or thread-safe whereas Hashtable is synchronized or thread-safe.
More Related questions...