What is the difference between a HashMap and a Hashtable in Java?
Which is more efficient for non-threaded applications?
|
feedback
|
|
There are several differences between HashMap and Hashtable in Java:
Since synchronization is not an issue for you, I'd recommend HashMap. | |||||||||||||||||||||
feedback
|
|
Note, that a lot of the answers state that Hashtable is synchronised. In practice this buys you very little. The synchronization is on the accessor / mutator methods will stop two threads adding or removing from the map concurrently, but in the real world you will often need additional synchronisation. A very common idiom is to "check then put" - i.e. look for an entry in the Map, and add it if it does not already exist. This is not in any way an atomic operation whether you use Hashtable or HashMap. An equivalently synchronised HashMap can be obtained by:
But to correctly implement this logic you need additional synchronisation of the form:
Even iterating over a Hashtable's entries (or a HashMap obtained by Collections.synchronizedMap) is not thread safe unless you also guard the Map from being modified through additional synchronization. Implementations of the ConcurrentMap interface (for example ConcurrentHashMap) solve some of this by including thread safe check-then-act semantics such as:
| |||||||||||
feedback
|
|
No one's mentioned the fact that | |||||||||
feedback
|
|
In addition to what izb said, Also note that | |||
|
feedback
|
|
This question oftenly asked in interview to check whether candidate understand correct usage of collection classes and aware of alternative solutions available.
Note on Some Important Terms
HashMap can be synchronized by
| ||||
|
feedback
|
|
HashMap: An implementation of the Map interface that uses a lookup table of hashcodes to locate keys. HashTable: Hi, 1998 called. They want their collections API back. Seriously though, you're better off staying away from Hashtable altogether. For single-threaded apps, you don't need the extra overhead of syncrhonisation. For highly concurrent apps, the paranoid synchronisation might lead to starvation, deadlocks, or unnecessary garbage collection pauses. Like Tim Howland pointed out, you might use ConcurrentHashMap instead. | ||||
feedback
|
|
As I understand it, Hashtable is similar to the HashMap and has a similar interface. It is recommended that you use HashMap unless yoou require support for legacy applications or you need synchronisation - as the Hashtables methods are synchronised. So in your case as you are not multi-threading, HashMaps are your best bet. | |||
|
feedback
|
|
Another key difference between hashtable and hashmap is that Iterator in the HashMap is fail-fast while the enumerator for the Hashtable is not and throw ConcurrentModificationException if any other Thread modifies the map structurally by adding or removing any element except Iterator's own remove() method. But this is not a guaranteed behavior and will be done by JVM on best effort." My source: http://javarevisited.blogspot.com/2010/10/difference-between-hashmap-and.html | |||
|
feedback
|
|
Based on the info here, I'd recommend going with HashMap. I think the biggest advantage is that Java will prevent you from modifying it while you are iterating over it, unless you do it through the iterator. | |||||||||
feedback
|
|
Hashtable is synchronized, whereas HashMap isn't. That makes Hashtable slower than Hashmap. For non-threaded apps, use HashMap since they are otherwise the same in terms of functionality. | |||
|
feedback
|
|
For threaded apps, you can often get away with ConcurrentHashMap- depends on your performance requirements. | |||
|
feedback
|
|
Beside all the other important aspects already mentioned here, Collections API (e.g. Map interface) is being modified all the time to conform to the "latest and greatest" additions to Java spec. For example, compare Java 5 Map iterating:
versus the old Hashtable approach:
In Java 1.8 we are also promised to be able to construct and access HashMaps like in good old scripting languages:
| |||
|
feedback
|
| |||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.