arraylist of arraylist size code example
Example 1: how to make arraylist of fixed size
List arr = Arrays.asList(new Integer[10]);
Example 2: arraylist length java
aList.size()
Example 3: ArrayList size() method in java
import java.util.ArrayList;
public class ArrayListSizeMethodExample
{
public static void main(String[] args)
{
ArrayList al = new ArrayList();
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);
}
}