Lecture 15
5
class RegularAccount
•Inherit from abstract BankAccount
•Write as little as possible – take all the defaults
•Constructor:
–public RegularAccount( int initialBalance,   Bank issuingBank )
–{
–   super(initialBalance, issuingBank);
–}
•implement abstract method newMonth
–public void newMonth()
–{
–}
•