好的,问题来了!
我有一堂课 GetStuff
public class GetStuff {
public GetStuff(String data) {
// stuff
}
}
在这个类中,我有一个方法 getMyStuff() 调用第二种方法:
getAllMyStuff();
现在,我想扩展我的课程,所以我会做一个:
public class GetSecondStuff extends GetStuff {
public GetSecondStuff(String data, int newData) {
super(data);
}
}
在第二个类中,我将覆盖我的 getAllMyStuffMethod,但在这个方法中,我需要使用构造函数中的 newData 参数:
private String getAllMyStuffMethod() {
if (newData==0) // do something
}
我如何在这里使用newData?:(