Java's java.util.Hashtable has the same functionality as java.util.HashMap. Their main difference is that Hashtable is thread-safe and synchronized while HashMap is not. As of JDK5, we have ConcurrentHashMap which can be used for multi-thread context. It has better performance than Hashtable. So do we have any reason to use Hashtable in the future?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
Reverse compatibility is the only reason Also, another alternative to |
|||||||||
|
|
There are a number of existing interfaces that use HashTable. In most, if not all cases, these cannot be replaced without breaking compatibility. |
|||
|
|