What is the difference between a HashMap and a Hashtable in Java?
Which is more efficient for non-threaded applications?
|
|
|
There are several differences between HashMap and Hashtable in Java:
Since synchronization is not an issue for you, I'd recommend HashMap. If synchronization becomes an issue, you may also look at ConcurrentHashMap. |
|||||||||||||||||||||
|
|
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:
|
|||||||||||||||||
|
|
No one's mentioned the fact that |
|||||||||
|
|
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
|
||||
|
|
|
In addition to what izb said, Also note that |
|||
|
|
|
HashMap: An implementation of the Map interface that uses hash codes to index an array. 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. |
||||
|
|
Take a look at this chart. It provides comparisons between different data structures along with HashMap and Hashtable. The comparison is precise, clear and easy to understand. |
||||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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 |
|||
|
|
|
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:
|
|||
|
|
|
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. |
|||||||||
|
|
|||
|
|
|
For threaded apps, you can often get away with ConcurrentHashMap- depends on your performance requirements. |
|||
|
|
|
Separate from the obvious differences discussed extensively in this question, I see the Hashtable as a "manual drive" car where you have better control over the hashing and the HashMap as the "automatic drive" counterpart that will generally perform well. |
||||
|
|
|
1)Hashtable is synchronized whereas hashmap is not. 2)Another difference is that iterator in the HashMap is fail-safe while the enumerator for the Hashtable isn't. If you change the map while iterating, you'll know. 3)HashMap permits null values in it, while Hashtable doesn't. |
|||
|
|
HashTable is a legacy class in the jdk that shouldn't be used anymore. Replace usages of it with ConcurrentHashMap. If you don't require thread safety, use HashMap which isn't threadsafe but faster and uses less memory. |
||||
|
|
|
HashMap:- It is a class available inside java.util package and it is used to store the element in key and value format. Hashtable:-It is a legacy class which is being recognized inside collection framework |
|||
|
|
|
There seems to be a Bug in versions from JDK1.4 onward where integer and modulus operation are much slower than its earlier versions. If the capacity of array is in power-of-two, the hash code can be easily converted to the index based on a simple AND operation and this seems to be more efficient as compared to modulus operation. I guess this is the reason why in HashMap capacity is always in power-of-two. Since HashMap has table capacity in power-of-two, only the lower bits influence the table index. This is why a supplemental hash function is applied to the given hashCode before masking off the low order bits. Its job is to distribute the information over all the bits, and in particular, into the low order bits. |
|||
|
|
|
Many people here are suggesting to prefer Synchronized code (in this case, Hashtable) citing that compiler doesn't really save time/ is a myth bla bla. Oracle documentation for String builder: Where possible, it is recommended that this class be used in preference to StringBuffer as it will be faster under most implementations. (StringBuilder is non-synchronized version of StringBuffer) |
||||
|
|
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.