Hi Nick,
I have 2 more questions regarding lab 4. I guess I don't quite comprehend your code.
1) In "Account.java"
public abstract String getAccountType();
Is above line of code "getAccounType()" an abstract method you mentioned in the video/slides?
If it is, what's the point of declare a method without performing any function?
2) In both "CheckingAccount.java" and "SavingsAccount.java"
What's the point of declare "getAccountType()" method in abstract Account class when both CheckingAccount and SavingsAccount declare their own method without using "super" keyword?
public String getAccountType() {
return accountType;
};
Thanks,
Carol