There are several differences between HashMap and Hashtable in Java:
Hashtableis synchronized, whereasHashMapis not. This makesHashMapbetter for non-threaded applications, as unsynchronized Objects typically perform better than synchronized ones.Hashtabledoes not allownullkeys or values.HashMapallows onenullkey and any number ofnullvalues.- One of HashMap’s subclasses is
LinkedHashMap, so in the event that you’d want predictable iteration order (which is insertion order by default), you could easily swap out theHashMapfor aLinkedHashMap. This wouldn’t be as easy if you were usingHashtable.