Saturday, 10 September 2011

Define Hashtable,HashMap and HashSet ? java interview questions


Ans:
Hashtable


Hashtable is basically a datastructure to retain values of key-value pair.
  • It didn’t allow null for both key and value. You will get NullPointerException if you add null value.

  • It is synchronized. So it come with its cost. Only one thread can access in one time.
HashMap
Like Hashtable it also accepts key value pair.
  • It allows null for both key and value

  • It is un-synchronized. So come up with better performance.
HashSet
HashSet does not allow duplicate values. It provides add method rather put method. You also use its contain method to check whether the object is already available in HashSet. HashSet can be used  where you want to maintain a unique list.

No comments: