What is difference between hash mapping and hash table?

Answers were Sorted based on User's Feedback



What is difference between hash mapping and hash table?..

Answer / 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

What is difference between hash mapping and hash table?..

Answer / murali.s

hashtable is a Synchronized.
hashmap is not a Synchrobnized.
Hashtable doesn,t accept null key,values
Hashmap accept null key,values

Is This Answer Correct ?    4 Yes 0 No

What is difference between hash mapping and hash table?..

Answer / ravi jain

Khalid's answer is right but it has one mistake i.e.

in second point HashMap is also fail-fast...

Is This Answer Correct ?    1 Yes 0 No

What is difference between hash mapping and hash table?..

Answer / sandya

Yes... I agree with u khalid.
can u send the examples in CFW.
Thanks in Advance.

Is This Answer Correct ?    0 Yes 1 No

What is difference between hash mapping and hash table?..

Answer / 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

More Core Java Interview Questions

What does main method?

0 Answers  


How the elements are organized in BorderLayout?

5 Answers  


Is there any way to skip finally block of exception even if some exception occurs in the exception block?

0 Answers  


Java.util.regex consists of which classes?

0 Answers  


What are some alternatives to inheritance?

0 Answers  


Question 6 [9] 6.1 In what situations (in general) would you use a TreeMap? (3) 6.2 In what situations (in general) would you use a HashSet to store a collection of values?

1 Answers  


What is an immutable class? How to create an immutable class?

0 Answers  


How do you compare two strings? any predefined method for this?

3 Answers  


What is run-time class and system class? what is their purpose?

1 Answers  


How do you convert int to char in java?

0 Answers  


What is array length in java?

0 Answers  


Hi Friends, I am beginner in java. what i know about synchonized keyword is,If more that one 1 thread tries to access a particular resource we can lock the method using synchronized keyword. Then after that how the lock is released and how next thread access that.Please explain with example.

5 Answers  


Categories