•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()
–{
–}
•