6 Difference between HashMap and ArrayList in Java with Example

HashMap and ArrayList both are one of the most popular classes of Java Collection framework. This is one of the frequently asked java collection interview question for java developers if you have experience around 1 to 3 years.Apart from the differences between HashMap and ArrayList we will see the similarities and examples as well.

Read Also :  Difference between HashMap and Hashtable

Difference between HashMap and ArrayList in Java

1. Implementation : HashMap implements Map interface in Java while ArrayList  implements List interface.

2. Storing objects: HashMap stores two objects key and value while ArrayList only stores one object.

3. Ordering : HashMap doesn't provide ordering guarantee while ArrayList maintains the order of the object in which they are inserted.


4. Duplicates : HashMap doesn't allow duplicate keys though it allows duplicate values while ArrayList does allows duplicates.

5. Equals and Hashcode method  :  The fifth difference between HashMap and ArrayList is that keys of HashMap must implement equals() and hashCode() methods while ArrayList does not have to implement such methods.

6. get() method performance : The sixth difference between HashMap and ArrayList is that HashMap get(key) method performance is O(1) in best case and O(n) in worst case while ArrayList get(index) method always gives an O(1) performance.

Example of HashMap and ArrayList in Java


import java.util.Hashtable;


public class HashMapArrayListExample {
    
    public static void main(String[] args) { 
 
           
  
        ArrayList<String> arrlistobj = new ArrayList<String>();
        arrlistobj.add("1. Alive is awesome");
        arrlistobj.add("2. Love yourself");
        System.out.println("ArrayList object output :"+ arrlistobj);
 
         
 
        HashMap hashmapobj = new HashMap();
        hashmapobj.put("Alive is ", "awesome");  
        hashmapobj.put("Love", "yourself"); 
        System.out.println("HashMap object output :"+hashmapobj);   
 
 }
}

Output


ArrayList object output :[1. Alive is awesome, 2. Love yourself]
HashMap object output :{Love=yourself, Alive is =awesome}


Similarities between HashMap and ArrayList 

1. Allows null : Both HashMap and ArrayList allows null. HashMap can have one null key and any number of null values.

2. Synchronized : Both HashMap and ArrayList are not synchronized. One needs to avoid using them in multithreading environment.

3. Traversal : Both HashMap and ArrayList can be traversed through iterator in java.

4. Iterator : Both HashMap and ArrayList classes iterator are fail-fast i.e they will throw ConcurrentModificationException as soon as they detect any structural change in ArrayList or HashMap.


Recap : Difference between HashMap and ArrayList in Java 



HashMapArrayList
ImplementationMapList
Storing Objectstwo objects key and valuestore only one object
DuplicatesUnique key,duplicate valuespermit duplicates
OrderingUnorderedMaintains order
get() performance Worst O(n) best O(1)O(1)


In case you have any other query please mention in the comments .

About The Author

Subham Mittal has worked in Oracle for 3 years.
Enjoyed this post? Never miss out on future posts by subscribing JavaHungry