what is the difference between HashMap and Hashtable

Answers were Sorted based on User's Feedback



what is the difference between HashMap and Hashtable..

Answer / sarithareddy

Hashmap work as like as Hashtable but hashtable is
synchronised hash map was not sychronized
hashtable does not allow null values
hashmap allows null values

Is This Answer Correct ?    123 Yes 16 No

what is the difference between HashMap and Hashtable..

Answer / chandan phukan

Two main differences between Hastable and HashMap are

1. Hashtable is synchronised but HashMap is not.
2. Hashtable does not allow "null" key but HashMap allows
"null" Key.

However one point to remember is that only one "null" key is
allowed in HashMap but multiple "null" values are allowed in
HashMap.

Is This Answer Correct ?    75 Yes 9 No

what is the difference between HashMap and Hashtable..

Answer / arun rajesh

The HashMap class is roughly equivalent to Hashtable,
except that it is unsynchronized and permits nulls.
(HashMap allows null values as key and value whereas
Hashtable doesnt allow).

HashMap does not guarantee that the order of the map will
remain constant over time. HashMap is unsynchronized and
Hashtable is synchronized.

Is This Answer Correct ?    54 Yes 12 No

what is the difference between HashMap and Hashtable..

Answer / knowledge_finder

1. HashMap allows null values for key and value whereas
Hashtable doesnt allow.
2. HashMap does not guarantee that the order of the map will
remain constant over time. 3. HashMap is non synchronized
where as Hashtable is synchronized.
4. HashTable is an Old java class but Hashmap is a new java
class in java 2.
5. In HashTable you can change the iteration but in the case
of HashMap you can change the iteration but you will get a
java.util.ConcurrentModificationException.

Is This Answer Correct ?    35 Yes 5 No

what is the difference between HashMap and Hashtable..

Answer / suresh

HashMap hm=new HashMap();
hm.put("1","11");
hm.put("2","22");
hm.put("3","33");
hm.put("4","242");
hm.put(null,null);
hm.put(null,null);
HashMap also allow more null values

Is This Answer Correct ?    24 Yes 13 No

what is the difference between HashMap and Hashtable..

Answer / regalla naresh reddy

Hash Table is a legacy Class Whereas HashMap belongs to the
collections package.

HashMap allows null key and values..but it allows only one
null key and multiple null values...Whereas the HashTable
wont allow the null key and values..

Is This Answer Correct ?    15 Yes 6 No

what is the difference between HashMap and Hashtable..

Answer / prabhat ranjan

You all said that HashMap allows 1 null key and mulitple
null values but why ? What was the basic idea behind it
making such feature by JAVA bulider ?

Is This Answer Correct ?    12 Yes 4 No

what is the difference between HashMap and Hashtable..

Answer / venkatesh marni

in the HashMap & Hashtable wen ever key values are Same then
it maps only to the value which is mapped at last.
REFER to the ANS.9 above we can access only one value.

but Hashtable is Synchronized one and it wont stores any
null values.

Is This Answer Correct ?    2 Yes 0 No

what is the difference between HashMap and Hashtable..

Answer / green

HashTable is a Legacy Class,where as HashMap is not.
HashTable is Syncronized,where as HashMap is not.
HashTable does not allow any null keys nad values, HashMap
allows one null key and 'n' number null values.
comparatively HashMap is faster then HashTable

Is This Answer Correct ?    3 Yes 1 No

what is the difference between HashMap and Hashtable..

Answer / ashad

Hash Table is a legacy Class Whereas HashMap belongs to the
collections package.

HashMap allows null key and values..but it allows only one
null key and multiple null values...Whereas the HashTable
wont allow the null key and values..


HashMap allows only one null key, basic idea behind it is
that key can have unique value only if one null is assigned
to a key next null will be duplicate.

Is This Answer Correct ?    10 Yes 9 No

Post New Answer

More Core Java Interview Questions

WHAT IS JDK,JVM,CLASS DEFINE ALL?

2 Answers  


What happens when heap memory is full?

0 Answers  


What do you mean by Hash Map and Hash Table?

0 Answers   Atos Origin,


What is an empirical question?

0 Answers  


What is the default value of local and global variables?

0 Answers  






Why do we need array in java?

0 Answers  


How do you insert a line break?

0 Answers  


Which methods cannot be overridden in java?

0 Answers  


explain multi-threading in java?

0 Answers  


How do you square a number in java?

0 Answers  


What is difference between static variable and global variable?

0 Answers  


What is a conditional statement explain with example?

0 Answers  


Categories