| -- | Hashtable | Hashmap |
|---|---|---|
| synchronization | synchronized | unsynchronized better for non-threaded application |
| null key | not allow null keys | allow one null key |
| null values | not allow null values | allow many null values |
| iteration order | difficult | using LinkedHashMap(HashMap's subclasses) |