ArrayList |
Is a collection class that does not have a set limit of how many items can go into the list. |
import java.util.ArrayList; -imports the ArrayList class
import java.util.Iterator; -imports the iterator that is used in while loops for the class.
private ArrayList <Account> account; -sets up an ArrayList
account = new ArrayList <Account>(); - initializes it
|