C ++修改基类的属性

时间:2013-10-22 13:16:21

标签: c++ inheritance properties interface

好的,所以这看起来很简单但是当它不起作用时它会爆炸我的大脑。 这是一个非常简单的几个类。 (在VC ++ btw中)

class Food
{
protected:
    char maxAmountCarried;
};
class Fruit:Food
{
protected:
     Fruit()
     {
         maxAmountCarried = 8; // Works fine
     }
};
class Watermelon:Fruit
{
protected:
     Watermelon()
     {
          maxAmountCarried = 1; //Food::maxAmountCarried" (declared at line 208) is inaccessible
     }
};

所以基本上,我希望水果,默认情况下,最大承载能力为8。 西瓜要大得多,因此容量变为1。 但是,遗憾的是我无法访问该物业。

如果有人可以告诉我一种解决这个问题的方法,那将是非常有帮助的。

提前致谢:)

1 个答案:

答案 0 :(得分:3)

在C ++中,当使用class作为类键来定义类时,默认情况下继承是 private 。如果你想要公共继承,你必须说:

class Fruit : public Food { /* ... */ };

class Watermelon : public Fruit { /* ... */ };

否则,Food::maxAmountCarriedFruit中变为私有,无法在Watermelon内访问。