EDUCBA Logo

EDUCBA

MENUMENU
  • Explore
    • EDUCBA Pro
    • PRO Bundles
    • Featured Skills
    • New & Trending
    • Fresh Entries
    • Finance
    • Data Science
    • Programming and Dev
    • Excel
    • Marketing
    • HR
    • PDP
    • VFX and Design
    • Project Management
    • Exam Prep
    • All Courses
  • Blog
  • Enterprise
  • Free Courses
  • Log in
  • Sign Up
Home Software Development Software Development Tutorials Top Differences Tutorial Java List vs Array List
 

Java List vs Array List

Priya Pedamkar
Article byPriya Pedamkar

Updated March 3, 2023

Java List vs Array List

 

 

Differences Between Java List and Array List

Java is a dynamic language and can be used on any platform. It provides a Java List vs ArrayList. The list acts as an interface, and an Array list is an implementation of the list. The list interface consists of methods. These methods are included in the Array list class with a few additions of methods. The main difference between Java List vs ArrayList is that you need to create a reference to the parent interface in the first one and a reference to the class which implements the list. That means an Array list class is the second class. Let us have a look at the differences between Java List vs ArrayList.

Watch our Demo Courses and Videos

Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more.

Head to Head Comparison Between Java List and Array List (Infographics)

Below Is The Top 4 Comparison Between Java List vs Array List

Java List vs Array List Infographics

Key Differences between Java List and Array List

The Differences Between Java List vs Array List are explained in the below-mentioned points:

  • One of the major differences is between Java List vs Array List is that list is an interface, and the Array list is a standard collection class.
  • The Java List interface extends the Collection, and the Array list extends the abstract listening class, and it can also implement the List interface.
  • List interface creates a collection of elements that are stored in sequence and can be accessed by its index number. Array list, on the contrary, creates an array of objects where the array can grow dynamically whenever required and reduce as well.
  • Both Java List vs Array List provides different kinds of methods to access data from the list. These methods enable getting elements from an array at the specified position and remove and shrink the size of an array in case of the Array list.

Java List vs Array List Comparisons Table

Following is the comparison table between Java List vs Array List

The basis of Comparison  Java List Array List
Basic difference The list is an interface that extends Collection. As it extends Collection it declares its behavior and stores a sequence of elements. A list can have some additional methods along with the ones present in the Collection. A list can also contain duplicate elements. Many of the methods in a list can throw Unsupported Operation Exception if the collection cannot be modified. Array List is a class that extends the Abstract List, and it implements the List interface. Normal arrays that are used in Java are of fixed length. Once an array is created in Java, its size cannot be increased or decreased. Array lists are dynamic and can be created with initial size, and later the size can be increased if more data is added, and also, it can be decreased if any data is removed.
Syntax The syntax to declare a list is as follows:

public interface List<E> extends Collection<E>

The syntax to declare an Array list is as follows:

public class ArrayList extends AbstractList implements List, RandomAccess, Cloneable, Serializable

Working Java List extends the Collection framework and uses the namespace system.collection.generic. A list is used to get objects that are related to their index numbers. A list object can be created as below:
List a= new ArrayList();
Once an object is created by a user can restrict the type of object which can be stored in the list. An object can be declared as type safe. This can be done as below:
// Obj is a type of object to be stored in List.List list = new List ();
An array list is created by extending AbstractList and implements the list interface. The namespace used by the Array list is System. Collections. The array list is considered when the user needs to create a dynamic array that contains objects and which can be added and removed at runtime.
ArrayList is a class and hence provides a few constructors. These constructors are as below:
1)ArrayList(): Using this constructor user can create an empty array list.2)ArrayList(Collection c): This constructor is used to create an array list which is initialized with the elements which are sent in collection c.3)ArrayList(int capacity): The main feature of Array list is that it increases automatically when more elements are added to the array list. This constructor helps to create an array list with a specified initial capacity.
Methods A list provides various methods:
1) void add(int index, Object obj)
This method helps in inserting objects. This is done by invoking a list at the index that is being passed. Any existing elements are shifted, and as a result, no data is overwritten.
2) Object get(int index)
It returns the object which is stored at that particular index within the invoking collection.
3) ListIterator listIterator()
This function returns an iterator to the start of the invoking list.
4) Object remove(int index)
It is used in removing elements at the mentioned position index and returns the deleted item. Also, the resulting list is compressed, and indexes of subsequent elements are decremented by one.
5) List subList(int start, int end)
It will return a list from start to end where the start is the starting index, and the end will be the ending index. Elements in a list can also be referenced by the invoking object.
An array list provides the below methods:
1) void add(int index, Object obj)
It inserts a specified element at a specified position and will throw an exception IndexOutOfBoundsException when the mentioned index is out of range.
2) Boolean contains(Object o)
It searches the list and returns true if the element specified is present. To be more specific, if the list contains at least one element such that o==null? e==null : o.equals(e)
3) Object get(int index)
It returns the element present at the specified position and will throw an exception IndexOutOfBoundsException when the mentioned index is out of range.
4) void ensureCapacity(int minCapacity)
It increases the capacity of the Array list instance. It makes sure that it can hold a minimum number of elements which is specified as the capacity.
5)Object[] toArray()
It returns an array that consists of all elements in the list. It returns NullPointerException if the array is null.

Conclusion

As a result, the array list is the solution to the problem of a memory of a static array. When a user uses an array list, the dynamic array is created, which can be increased whenever required. The normal list extends the collection class. Also, it is better to increase the capacity of an array in the beginning than reallocating the memory later. Manipulation is slow in the array list as shifting needs to be done if any element is removed from a list. In a list, you can perform different operations of positional access, searching and range view as well.

Recommended Article

This has been a guide to the top differences between Java List vs Array List. Here we also discuss the  key differences with infographics and comparison table. You may also have a look at the following articles to Learn more –

  1. Java Vector vs ArrayList
  2. Java vs JavaScript
  3. Java Heap vs Stack
  4. C# Array vs List

Primary Sidebar

Footer

Follow us!
  • EDUCBA FacebookEDUCBA TwitterEDUCBA LinkedINEDUCBA Instagram
  • EDUCBA YoutubeEDUCBA CourseraEDUCBA Udemy
APPS
EDUCBA Android AppEDUCBA iOS App
Blog
  • Blog
  • Free Tutorials
  • About us
  • Contact us
  • Log in
Courses
  • Enterprise Solutions
  • Free Courses
  • Explore Programs
  • All Courses
  • All in One Bundles
  • Sign up
Email
  • [email protected]

ISO 10004:2018 & ISO 9001:2015 Certified

© 2025 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA
Free Software Development Course

Web development, programming languages, Software testing & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA Login

Forgot Password?

🚀 Limited Time Offer! - 🎁 ENROLL NOW