Showing posts with label HashMap. Show all posts
Showing posts with label HashMap. Show all posts

2009/08/14

HashTable vs. HashMap

Both provide key-value access to data. The Hashtable is one of the original collection classes in Java. HashMap is part of the new Collections Framework, added with Java 2, v1.2.

1. The key difference: Access to the Hashtable is synchronized on the table while access to the HashMap isn't. You can add it, but it isn't there by default.

2. 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.


Google Analytics

Blog Archive

Followers