arrayList capacity and size code example

Example 1: how to make arraylist of fixed size

List<Integer> arr = Arrays.asList(new Integer[10]);

Example 2: ArrayList size() method in java

import java.util.ArrayList;
public class ArrayListSizeMethodExample
{
   public static void main(String[] args)
   {
      ArrayList<Integer> al = new ArrayList<Integer>();
      int s = al.size();
      System.out.println("size of ArrayList: " + s);
      al.add(25);
      al.add(64);
      al.add(73);
      s = al.size();
      System.out.println("size of ArrayList after adding elements: " + s);
      al.clear();
      s = al.size();
      System.out.println("size of ArrayList after clearing elements: " + s);
   }
}

Tags:

Java Example