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 OOPS Concept?

1 Answers   Cap Gemini,


Explain JSP life cycle

1 Answers   Cap Gemini,


What class allows you to read objects directly from a stream?

0 Answers  


What are the types of classes in java?

4 Answers   HCL,


What are inner and anonymous class?

3 Answers  






what is the difference between HashMap and Hashtable

17 Answers   Value Labs, Virtusa,


public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }

7 Answers   iGate,


What is the difference between method and means?

0 Answers  


What is the maximum size of a string in java?

0 Answers  


Java does not support multiple inheritance. how interface helps in the same?

5 Answers   TCS,


Why does java have two ways to create child threads?

0 Answers  


Explain oops concepts in detail?

0 Answers  


Categories