Write a constructor that takes a name and an initial


Task #1 Extending the BankAccount Class

1. Copy the files AccountDriver.java and BankAccount.java from Blackboard. BankAccount.java is complete and will not need to be modified.

2. Create a new class called SavingsAccount that extends BankAccount.

3. It should contain an instance variable called rate that represents the annual interest rate. Set it equal to 2.5%.

4. It should also have an instance variable called savingsNumber, initialized to 0. In this bank, you have one account number, but can have several savings accounts with that same number. Each individual savings account is identified by the number following a dash. For example, 100001-0 is the first savings account you open, 100001-1 would be another savings account that is still part of your same account. This is so that you can keep some funds separate from the others, like a Christmas club account.

5. An instance variable called accountNumber, that will hide the accountNumber from the superclass, should also be in this class.

6. Write a constructor that takes a name and an initial balance as parameters and calls the constructor for the superclass. It should initialize accountNumber to be the current value in the superclass accountNumber (the hidden instance variable) concatenated with a hyphen and then the savingsNumber.

7. Write a method called postInterest that has no parameters and returns no value. This method will calculate one month's worth of interest on the balance and deposit it into the account.

8. Write a method that overrides the getAccountNumber method in thesuperclass.

9. Write a copy constructor that creates another savings account for the same person.

It should take the original savings account and an initial balance as parameters. It should call the copy constructor of the superclass, and assign the savingsNumber to be one more than the savingsNumber of the original savings account. It should assign the accountNumber to be the accountNumber of the superclass concatenated with the hyphen and the savingsNumber of the new account.

10. Compile and debug this class.

11. Use the AccountDriver class to test out your classes. If you named and created your classes and methods correctly, it should not have any difficulties. If you have errors, do not edit the AccountDriver class. You must make your classes work with this program.

Request for Solution File

Ask an Expert for Answer!!
Dissertation: Write a constructor that takes a name and an initial
Reference No:- TGS02943856

Expected delivery within 24 Hours