/** * Creates bank accounts and performs transactions */ public class Transactions{ public static void main(String[] args){ BankAccount account = new BankAccount("America Chambers", "333 Union Avenue Tacoma, WA 98406", 5000.00, "achambers", "AaCsDg84"); // If your class does not have a toString() method, // then System.out.println will display the memory address of the object // If your class has a toString() method, // then System.out.println will display the String returned by toString() System.out.println(account); System.out.println(account.toString()); } }