difference between HashMap, Hashset and hashTable?

Answer Posted / adarsh m thimmappa

HashTable is a hashing based key-value pair data structure
- doesn't allow null as key
- doesn't allow null as value as well
- not thread safe
- oldest map based data structure available since earlier versions of java

HashMap is a hashing based key-value pair data structure
- allow one null as key
- allows multiple null as more than one value
- not thread safe

HashSet is a hashing based set representation
- holds unique set of keys
- internally uses HashMap
- allows one null value
- not thread safe

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to implement dphibernate to activate lazy loading in Flex with java ?thanx in advance!

2756


Where can I find seam examples and documentation?

784


Can I run seam outside of jboss as?

807


Do I have to use jsps with my application?

744


why static class in java

1464


What is the difference between RMI and Corba?

2464


What is scalable, portability in the view of J2EE?

2158


Explain about RMI Architecture?

812


What is the purpose of the wait(), notify(), and notifyall() methods?

768


What is the difference between session and entity beans?

784


Why doesn’t the focus feature on the tag work in every circumstance?

766


How to determine SGA site?

2146


What are transaction attributes?

812


What is the difference between the session.update() method and the session.lock() method?

731


Is there a guarantee of uniqueness for entity beans?

745