Answered step by step
Verified Expert Solution
Question
1 Approved Answer
A company has written a large class BankingAccount with many methods including: Method/Constructor Description public BankingAccount(Startup s ) constructs a BankingAccount object using information in
A company has written a large class BankingAccount with many methods including:
Method/Constructor | Description |
---|---|
public BankingAccount(Startup s) | constructs a BankingAccount object using information in the Startup object s |
public void debit(Debit d) | records the given debit |
public void credit(Credit c) | records the given credit |
public int getBalance() | returns current balance in pennies |
Design a new class MinMaxAccount whose instances can be used in place of a BankingAccount object but include new behavior of remembering the minimum and maximum balances ever recorded for the account. You should provide the same methods as the superclass, as well as the following new behavior:
Method/Constructor | Description |
---|---|
public MinMaxAccount(Startup s) | constructs a MinMaxAccount object using information in the Startup object s |
public int getMin() | returns minimum balance in pennies |
public int getMax() | returns maximum balance in pennies |
The account's constructor sets the initial balance based on the Startup information. Assume that only the debit and credit methods change an account's balance.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started