Same common question what is Map,Set,HashMap,List????
Answers were Sorted based on User's Feedback
Answer / dsr
Map,set ,List are collection interfaces.
HashMap is a collection class.
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / punit pannu
collection API:- Collection is a interface which contains three sub-interfaces list set and queue sub-interfaces.
1.List sub-interface: it contains three concrete classes
Arraylist
Vector and
Linkedlist
2. Set sub-interface:- it contains two classes
HashSet
LinkedHashSet
and one interface- SortedSet which contains one concrete
class - TreeSet
3. Map interface: it contains three concrete classes
HashMap
HashTable
LinkedHashMap
and one sub-interface
SortedMap
which contains one concrete class
TreeMap.
Is This Answer Correct ? | 4 Yes | 0 No |
What is string in java with example?
What is collection api?
What is the new line character?
What is difference between equal and == in java?
we have two threads..both the threads are reading the data.. is there any need of synchronization there?...justify it?
What is variable and rules of variable?
What do you mean by garbage collection used in java?
What is the difference between compare and compareto in java?
What are nested classes in java?
What is multithreading in java?
What about interrupt() method of thread class ?
How do you set security in applets?