ArrayList in java

ArrayList in java is most common Collections data structure along with HashMap which we use very often.

1. Why to choose ArrayList vs Array:

  1. Array is fixed length data structure If array is full , you can not add element to it, where as ArrayList in java can dynamically grow and shrink as per our need.
  2. You can use generics with ArrayList but not with Array
  3. ArrayList have predefined methods which can be used to perform operations.

2. Some important points about ArrayList in java

  1. ArrayList is implementation of list interface.
  2. ArrayList is not synchonized(so not thread safe)
  3. ArrayList is implemented using array as internal data structure.It can be dynamically resized .
  4. ArrayList increases half of its size when its size is increased.

ArrayList

3. Example of ArrayList in java

When you run above program, you will get below output:

4. Iterate over list

We have used foreach loop to iterate over list in above example: There are many ways to iterate over list. Some of them are:

  1. Using for loop
  2. Using Iterator

Iterator example:

When you run above program, you will get below output:

5. Methods of ArrayList in java

I am explaining below method in context of [String list](https://java2blog.com/list-string-java/ “String list”), but you can put any object in the list.

add( Object o): This method adds an object o to end of the arraylist.

This statement would add a string Amit in the ArrayList at last position.

add(int index, Object o): This adds the object o to the arraylist at the specified index.

It will add the string Ankit to the 5th index (6rd position as the array list starts with index 0) of ArrayList.

Object get(int index): It returns the object of list which is present at the specified index.

It is used to get element from ArrayList and this is most used method. Here we are getting element from ArrayList and assigning it to String object

remove(Object o): Removes the object o from the ArrayList.

This code will remove the string “Arpit” from the ArrayList.

remove(int index): Removes element which is present at specified index

It would remove the element of index 3 (4th element of the list as list always starts with 0).

set(int index, Object o): It is mainly used for updating an element. It replaces the element present at the specified index with the object o.

It would replace element which is present at index 2(3rd element in arrayList)with the value Tom.

int indexOf(Object o): It is used to find index of object o. If object is not present, this method returns -1

This would give the index (position) of the string Ankit in employeeNameList.

int size(): It gives the size of the ArrayList

boolean contains(Object o): 
It checks whether the given object o is present in the ArrayList or not. If not present, it returns false

It would return true if the string “Amit” is present in the list else it will return false

clear():

It will remove all the object of ArrayList, so above statement will remove all String object from employeeNameList

addAll(Collection c)
If you want to merge two ArrayList, you can use this method.
Example:
When you run above program, you will get below output:
removeAll(Collection c)
If you want to remove list of elements which is present in other list, you can use this method.
Example:
When you run above program, you will get below output:
retainAll(Collection)
If you want to retain only those elements which are present in Collection, you can use this method.
Example:
When you run above program, you will get below output:

That’s all about ArrayList in java.

Was this post helpful?

Leave a Reply

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