public class Account {
public Account() {
// imple...
}
// Here, member method imp...
}
import Account;
public class Saving_Bank_Account extends Account {
public Saving_Bank_Account() {
super();
}
// Here, member method imp...
}
import Account;
public class Current_Bank_Account extends Account {
public Current_Bank_Account() {
super();
}
// Here, member method imp...
}
Comments
Leave a comment