MySpeed
0
Q:

java list length

import java.util.ArrayList;

/*
 * Java Program to find the length of ArrayList. *
 */

public class ArrayListDemo{

  public static void main(String[] args) {
    System.out.println("Welcome to Java Program to find the length of array list");

    ArrayList<String> listOfBanks = new ArrayList<>();
    int size = listOfBanks.size();
    System.out.println("size of array list after creating: " + size);

    listOfBanks.add("Citibank");
    listOfBanks.add("Chase");
    listOfBanks.add("Bank of America");
    size = listOfBanks.size();

    System.out.println("length of ArrayList after adding elements: " + size);

    listOfBanks.clear();
    size = listOfBanks.size();
    System.out.println("size of ArrayList after clearing elements: " + size);
  }

}
Output
Welcome to Java Program to find length of array list
the size of array list after creating: 0
the length of ArrayList after adding elements: 3
the length of ArrayList after clearing elements: 0
2
ArrayList<String> listOfBanks = new ArrayList<>(); 
int size = listOfBanks.size(); 
System.out.println("size of array list after creating: " + size);
2

New to Communities?

Join the community