View Single Post
  #2 (permalink)  
Old 05-10-2008, 10:03 AM
ram101 ram101 is offline
Senior Member
 
Join Date: Jun 2007
Posts: 274
Default

1.Map is Interface and Hashmap is class that implements that.

2.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.
Reply With Quote