Lecture 4
10
Fields are declared …
•in the class description, outside any methods
•at the top of the class (by convention)
•20 public class Bank
•21 {
•22    private String bankName;
•24    private Terminal atm;
•26    private BankAccount account1;
27   private BankAccount account2;
•29    private static final int           INITIAL_BALANCE = 200;
•for now, ignore public,private, static, final