我可以从Vehicle::color
类中访问Sedan
的唯一方法是重新实现getter方法。我想从子类访问它,而不这样做。
// Base Class
class Vehicle
{
protected:
bool windowIsOpen[4];
int wheels;
char *color;
public:
Vehicle(char *color) : color(color){};
char *getColor() { return color; }
};
class Sedan : Vehicle
{
public:
Sedan(char* color) : Vehicle(color) {}
};
int main(int argc, char **argv){
Sedan se("green");
cout<<se.getColor()<<endl;
return 0;
}
答案 0 :(得分:7)
定义类时,您写了class Sedan : Vehicle
。这实际上与class Sedan : private Vehicle
相同。换句话说,Vehicle是一个未向Sedan用户公开的实现细节。要公开继承,您应该编写class Sedan : public Vehicle
。