Big Java & Java Concepts example project "arraylist"

You can use this project as follows:

 - invoke the main method of the driver class ArrayListTester by right-clicking 
 on the class representation and selecting the main method
 - interactively create a BankAccount object.
 - add and withdraw from the account, inspecting changes to the internal 
 state of the object
 
  
This project illustrates concepts covered in Big Java & Java Concepts, Chapter 8 
"Arrays and ArrayLists".
  
 - to become familiar with using arrays and array lists
 - to understand when to choose array lists and arrays in your programs