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
How to implement dphibernate to activate lazy loading in Flex with java ?thanx in advance!
Where can I find seam examples and documentation?
Can I run seam outside of jboss as?
Do I have to use jsps with my application?
why static class in java
What is the difference between RMI and Corba?
What is scalable, portability in the view of J2EE?
Explain about RMI Architecture?
What is the purpose of the wait(), notify(), and notifyall() methods?
What is the difference between session and entity beans?
Why doesn’t the focus feature on the tag work in every circumstance?
How to determine SGA site?
What are transaction attributes?
What is the difference between the session.update() method and the session.lock() method?
Is there a guarantee of uniqueness for entity beans?