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 ? | 11 Yes | 1 No |
Post New Answer View All Answers
Can a class have an interface?
Is ++ operator is thread safe in java?
What happens to the Exception object after handling an exception?
What is the inheritance?
What will happen to the exception object after exception handling?
Why collection doesn’t extend cloneable and serializable interfaces?
What do you understand by classes in java?
Write a program to reverse a number in java?
What methods are used to get and set the text label displayed by a button object?
What happens if constructor is private?
What comes to mind when someone mentions a shallow copy in java?
os is developed in c no java is more secured then c na why dont the os developed is developed using java
Discuss about garbage collector in Java.
What is the static keyword?
What is structure of java heap? What is perm gen space in heap?