What is Hashtables used for in Java? Further more please give examples of simple usage of Hashtables.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Note that there is standard Java class called Hashtable, however it recommended not to use it. Best practice is to create instance of HashMap (which is a standard implementation of a hash-table) and use it through its interface Map. |
|||
|
|
|
If you need to have a synchronized key value pairs, you will use hashtable. If you wonder why you need hashtable when there is hashmap, there are lot of resources available, check here |
|||
|
|
|
Hash tables, in pretty much any language (not just Java), are used for mapping keys to values, with very good normal-case performance characteristics. |
|||
|
|
|
It basically is used for like in any other language I know: To map keys to values. You may e.g. think of a dictionary which maps keywords to definitions. |
|||
|
|