ArrayList

In this chapter you will learn:

  1. What is Java ArrayList
  2. A quick demo for ArrayList

ArrayList Class

ArrayList is a resizable-array implementation of the List interface.

The ArrayList class extends AbstractList and implements the List interface.

ArrayList supports dynamic arrays that can grow as needed. An ArrayList is a variable-length array of object references, whick can dynamically increase or decrease in size.

ArrayList is a generic class that has declaration of:

class ArrayList<E>

E specifies the type of objects that the list will hold.

ArrayList demo

A demonstration of an array-based list

import java.util.ArrayList;
import java.util.List;
// j a  va 2  s . co  m
public class Main {
  public static void main(String[] args) {
    List<String> ls = new ArrayList<String>();
    String[] weekDays = { "A", "B", "C", "Wed", "Z", "Y", "X" };
    for (String weekDay : weekDays){
      ls.add(weekDay);
    }
    dump("ls:", ls);
    ls.set(ls.indexOf("Wed"), "Wednesday");
    dump("ls:", ls);
    ls.remove(ls.lastIndexOf("X"));
    dump("ls:", ls);
  }
  static void dump(String title, List<String> ls) {
    System.out.print(title + " ");
    for (String s : ls){
      System.out.print(s + " ");
    }
      
    System.out.println();
  }
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. What are constructors for ArrayList
Home » Java Tutorial » List

List

    List interface
    List add/insert elements
    List clear/remove elements
    List search
    List element get and set
    List and its Iterator
    List size, empty
    List conversion, to array
    List to sublist
    List comparison
    List filling
    List reversing
    List rotating and shuffling
    List sorting
    List element swap
    List element replacing
    List copy
    List binary search

ArrayList

    ArrayList
    ArrayList Creation
    ArrayList add/insert
    ArrayList get/set element
    ArrayList clear/remove
    ArrayList search
    ArrayList copy and shallow copy
    ArrayList size, trim to size and capacity
    ArrayList to array

LinkedList

    LinkedList class
    LinkedList creation
    LinkedList add/insert elements
    LinkedList get elements
    LinkedList search
    LinkeList replace/set elements
    LinkedList remove element
    LinkedList copy
    LinkedList iterator
    LinkedList peek element
    LinkedList pop/push element
    LinkedList conversion

List Utilities

    List filling
    List reversing
    List rotating and shuffling
    List sorting
    List element swap
    List element replacing
    List copy
    List binary search