what is difference betwwen hashmap and hashtable ?

Answers were Sorted based on User's Feedback



what is difference betwwen hashmap and hashtable ?..

Answer / deep pratap singh

HashMap HashTable
1> Not Synchronized Synchronized
2> can contain null cann't

You may also make HashMap Synchronized using generic
methods. Using Hashtable is bad habit. Try to avoid it.

Is This Answer Correct ?    10 Yes 2 No

what is difference betwwen hashmap and hashtable ?..

Answer / ravikiran

hashmap allows one null key and multiple null values.
hashtable doesn't allow null elements
hashmap is not synchronized
hashtable is snchronized
hashmap is not legacy
hashtable is legacy

Is This Answer Correct ?    6 Yes 0 No

what is difference betwwen hashmap and hashtable ?..

Answer / ajay yadav

Hash Map allows null values.
Hash Table dont allows null values.

Is This Answer Correct ?    4 Yes 0 No

what is difference betwwen hashmap and hashtable ?..

Answer / javablossom

The Iterator is used in the hashmap is fail-safe and
whereas the Enumerator used in hashtable is not fail-safe.

Is This Answer Correct ?    1 Yes 0 No

what is difference betwwen hashmap and hashtable ?..

Answer / sekhar

Both class are under map interface.But hash table is
synchronized.hashMap is not.we can explictly synchronize
hash map by using the method
Collections.synchronizedMap(Hash Map);

Is This Answer Correct ?    1 Yes 1 No

what is difference betwwen hashmap and hashtable ?..

Answer / kvn

Hash map contains null values,but hash table does not.

Is This Answer Correct ?    1 Yes 3 No

what is difference betwwen hashmap and hashtable ?..

Answer / guest

dfg

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More Core Java Interview Questions

What is the string function?

1 Answers  


How are the elements of a gridbaglayout organized in java programming?

1 Answers  


Write a factorial program using recursion in java?

1 Answers  


What is java virtual machine and how it is considered in context of java’s platform independent feature?

1 Answers  


What is the difference between Java Bean and Java Class.?

2 Answers  


Why java is call by value?

1 Answers  


how to create an applet

2 Answers  


Is java an open source?

1 Answers  


What's the difference between comparison done by equals method and == operator?

1 Answers  


What environment variables are required to be set on a machine in order to run Java programs?

1 Answers   Tech Mahindra,


Can we use return in constructor?

1 Answers  


Explain the importance of finalize() method.

1 Answers  


Categories