/** * Created by NewProgrammer on 3/28/15. */ import java.util.ArrayList; public class ArrayListDemo { public static void main(String[] args) { // Create and populate an ArrayList ArrayList friends = new ArrayList(); friends.add("Mary"); friends.add("Ann"); friends.add("David"); friends.add("Roy"); // How many friends are there? int friendsCount = friends.size(); // Print the content of the ArrayList for (int i=0; i