如果我有一个带有两个参数的构造函数,我可以这样调用 super 吗?
super(a,b).method
例如:
public class Money (){
int euro=0;
int count=0;
public Money(int a,int b) {
a=euro;
b=count;
}
public int getPay(){
return 100;
}
}
public class Pay extends Money{
super(a,b).getPay();
}
这可能吗?