2
我想在C++中調用父類(父類)的繼承函數。
這怎麼可能?如何從父類調用函數?
class Patient{
protected:
char* name;
public:
void print() const;
}
class sickPatient: Patient{
char* diagnose;
void print() const;
}
void Patient:print() const
{
cout << name;
}
void sickPatient::print() const
{
inherited ??? // problem
cout << diagnose;
}
其他什麼類來自患者?如果你的答案不同於「only healthyPatient」,那麼你的設計是錯誤的。 –