Hashtable
Synchronized hash map
Hashtable
Legacy synchronized map.
Code Examples
Hashtable usage
java
1
2Hashtable<String, Integer> ht = new Hashtable<>();
3 Use Cases
- Legacy code
Common Mistakes to Avoid
- Using instead of ConcurrentHashMap
Synchronized hash map
Legacy synchronized map.
Hashtable usage
1
2Hashtable<String, Integer> ht = new Hashtable<>();
3