Question: Given an existing class, BankAccount, containing: a constructor accepting a String corresponding to the name of the account holder. a method, getBalance, that returns a
Given an existing class, BankAccount, containing:
a constructor accepting a String corresponding to the name of the account holder.
a method, getBalance, that returns a double corresponding to the account balance.
a method withdraw that accepts a double, and deducts the amount from the account balance.
Write a public subclass, CheckingAccount, based on BankAccount, which contains:
a boolean instance variable, overdraft. Having overdraft for a checking account allows one to write checks larger than the current balance
a constructor that accepts a String and a boolean. The String parameter is used in the invocation of the superclass BankAccount constructor, while the boolean is used to initialize the overdraft instance variable.
a method, hasOverdraft, that returns a boolean. hasOverdraft returns trueif the account supports overdraft.
a method, clearCheck, that accepts a double and returns a boolean. clearCheck will determine if the amount of the check can be cashedthis will be the case if the amount is less than the balance in the account, or if the account allows overdraft. If the check can be cashed, clearCheck returns true, and also calls the withdraw method to update the account balance; otherwise, clearCheck returns false.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
