HashMap Example in Java
HashMap Example in Java
List, Set and Map are the interfaces which implements Collection interface. Here
we will discuss difference between List Set and Map in Java.
Set doesnt allow duplicates. Set and all of the classes which implements Set
interface should have unique elements.
Map stored the elements as key & value pair. Map doesnt allow duplicate keys
while it allows duplicate values.
2) Null values: List allows any number of null values.
Set allows single null value at most.
Map can have single null key at most and any number of null values.
3) Order: List and all of its implementation classes maintains the insertion order.
Set doesnt maintain any order; still few of its classes sort the elements in an
order such as LinkedHashSet maintains the elements in insertion order.
Similar to Set Map also doesnt stores the elements in an order, however few of its
classes does the same. For e.g. TreeMap sorts the map in the ascending order of
keys and LinkedHashMap sorts the elements in the insertion order, the order in
which the elements got added to the LinkedHashMap.
4) Commonly used classes:
List: ArrayList, LinkedList etc.
Set: HashSet, LinkedHashSet, TreeSet, SortedSet etc.
Map: HashMap, TreeMap, WeakHashMap, LinkedHashMap, IdentityHashMap etc.
List<E> and Set<E> are part of Java CollectionsFramework and are used widely. Most common
implementation of List<E> is ArrayList<E> and for Set<E> is HashSet<E>. There are few differences
between the two and in this post we will see them.
This post is part of Java Collections Interview Questionsand you can find several interview questions
here.
First difference is that List<E> allows you to insert duplicate elements. While Set<E> isnt
kind enough to let you insert duplicate elements. If you try to value that exists in Set<E> then it will
replace that value. Set<E> contains unique elements.
Second difference is that List<E> maintains the order of Insertion. As discussed here List<E>
maintains the order of insertion of elements. Set<E> does not maintain order. But we can use
SortedSet<E> which can store elements defined by Comparator<T>. LinkedHashSet<E>(concrete
implementation of Set<E>) allows you to maintain the insertion order but does not allow indexed
access.
Third difference is in terms of index access or Random access of elements. List<E> interface
has ArrayList<E> as concrete implementation. ArrayList<E> is backed by an array and hence it
supports indexed retrieval of elements. This cannot be achieved by any concrete implementation of
Set<E>.
Fourth difference is that we can use Iterator<E> and ListIterator<E> to iterate through the
List<E>. For Set<E> we can only use Iterator<E> interface.