What is difference between hash mapping and hash table?
Answer Posted / khalid
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.
The key difference between the two is that 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.
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.
And, a third difference is that HashMap permits null values
in it, while Hashtable doesn't.
For new code, I would tend to always use HashMap.
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Why set is used in java?
What is a classloader in java?
What is meant by JVM? Is JVM platform independent or not?
How do I know if java is installed?
what are abstract functions?
What is unmodifiable list in java?
If a method is declared as protected, where may the method be accessed in java programming?
Why is singleton not thread safe?
What is the inheritance?
What is the use of singleton?
What is command line argument in java?
Which is bigger float or double java?
what is a working thread? : Java thread
What is square root in java?
Suppose if we have variable ' I ' in run method, if I can create one or more thread each thread will occupy a separate copy or same variable will be shared?