如果该变量在java中是私有的,我如何从子类中的超类调用变量(私有双重余额)?
public class Account {
private double bal;
}
我需要从这个子类中调用它:
public class SavingAccount extends Account {
private int interesi;
public SavingAccount(int a, int interesi){
super(a);
this.interesi = interesi;
}
答案 0 :(得分:2)
您可以使用getter和setter,也可以使用允许子类访问的protected
辅助功能。