List vs ArrayList in java

In this post, we will see the difference between List and ArrayList in Java.
List is an interface where ArrayList is concrete implementation, so List is more generic than ArrayList.

You can instance an ArrayList in below two ways.You might have seen this code before.

If you use 1st way, you can change the implementation later easily.
For example:
You need to change your implementation from ArrayList to LinkedList, you can simply change implementation, you don’t need to worry about making changes to all the code where variable list is being used.

You won’t be able to do it in case of 2nd way.

It is always a good idea to code to an interface rather than concrete implementation.

List vs ArrayList

Let’s see tabular difference between List and ArrayList in java.

ParameterListArrayList
ImplementationList is interface and does not have any implementationArrayList is concrete implementation and ArrayList implements List interface
MethodsList method can access methods which is available in interface.
For example:
It can not access method trimToSize because it available in ArrayList
ArrayList contains extra methods such trimToSize(), ensureCapacity() which is not in List interface.
Changing ImplementationYou can change implementation later.
For example:
You want to change implementation from ArrayList to LinkedList, you can do it.
You can not change implementation as ArrayList is already concrete implementation.
RecommendationList is preferred over ArrayList as you can change implementationArrayList over List not preferred as you have to stick with ArrayList.You won't be able to change implementation later.

that’s all about List vs ArrayList in java.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *