无法从派生类访问基类中的受保护成员

时间:2013-05-09 10:29:31

标签: c++ public protected inheritance

继承我的代码:

#include <iostream>
#include <cmath>
#include <sstream>
using namespace std;

class root
{
    protected :

            int size;
            double *array;

    public :

        virtual ~root() {}
        virtual root* add(const root&) = 0;
        virtual root* sub(const root&) = 0;
        virtual istream& in(istream&, root&) = 0;
        virtual int getSize() const = 0;
        virtual void setSize(int);
};

class aa: public root
{

    public :

        aa();
        aa(int);
        aa(const aa&);
        root* add(const root& a);
        root* sub(const root& a);
        istream& in(istream&, root&){}
        int getSize() const;
        void setSize(int);
};

class bb: public root
{
public:
    bb() { }
    bb(const bb& b) { }
    root* add(const root& a);
    root* sub(const root& a);
    istream& in(istream&, root&){}
    int getSize() const{}
    void setSize(int){}
};

aa::aa()
{
    size = 0;
    array = NULL;
}

aa::aa(int nsize)
{
    size = nsize;
    array = new double[size+1];
    for(int i=0; i<size; i++)
        array[i] = 0;
}

root* aa::add(const root& a)
{
    for (int i=0; i<a.size; i++)
        array[i] += a.array[i];
    return *this;
}

root* aa::sub(const root& a)
{
}

int aa::getSize() const
{
    return size;
}

void aa::setSize(int nsize)
{
    size = nsize;
    array = new double[size+1];
    for(int i=0; i<size; i++)
        array[i] = 0;
}

root* bb::add(const root& a)
{
    return new bb();
}

root* bb::sub(const root& a)
{

}

int main(int argc, char **argv)
{
}

当我想在派生类中访问sizearray时,我只是因为我的编译器说:

/home/brian/Desktop/Temp/Untitled2.cpp||In member function ‘virtual root* aa::add(const root&)’:|
/home/brian/Desktop/Temp/Untitled2.cpp|10|error: ‘int root::size’ is protected|
/home/brian/Desktop/Temp/Untitled2.cpp|66|error: within this context|
/home/brian/Desktop/Temp/Untitled2.cpp|11|error: ‘double* root::array’ is protected|
/home/brian/Desktop/Temp/Untitled2.cpp|67|error: within this context|
/home/brian/Desktop/Temp/Untitled2.cpp|68|error: cannot convert ‘aa’ to ‘root*’ in return|
||=== Build finished: 5 errors, 0 warnings ===|

我读到受保护的成员在派生类中是私有的,所以它似乎没问题,但它不是。如何解决这个问题?

1 个答案:

答案 0 :(得分:6)

  

我读到受保护的成员在派生类中是私有的,所以看起来没问题,但它不是。

这不是因为protected数据成员从派生类Aroot继承自基类B(在本例中为aa)只要在Baa)类型的对象上访问它,就可以访问。在这里,您通过Aroot)类型的对象访问它:

root* aa::add(const root& a)
{
    for (int i=0; i<a.size; i++)
    //              ^^^^^^
    //              Accessing size on an object of type `root`, not `aa`!
        array[i] += a.array[i];
    return *this;
}

根据C ++ 11标准的第11.4 / 1段:

  

当非静态数据时,将应用超出前面第11章中描述的附加访问检查   成员或非静态成员函数是其命名类的受保护成员(11.2)。 如上所述   之前,授予对受保护成员的访问权限,因为引用发生在朋友或某些成员中   C级。如果访问要形成指向成员的指针(5.3.1),则嵌套名称说明符应表示C或a   从C派生的类。所有其他访问涉及(可能是隐式的)对象表达式(5.2.5)。在这种情况下,   对象表达式的类应为C或从C派生的类。 [示例:

class B {
protected:
    int i;
    static int j;
};
class D1 : public B {
};
class D2 : public B {
    // ...
    void mem(B*,D1*);
};

void D2::mem(B* pb, D1* p1) {
    pb->i = 1; // ill-formed
    p1->i = 2; // ill-formed
    // ...
    i = 3; // OK (access through this)
    B::i = 4; // OK (access through this, qualification ignored)
    j = 5; // OK (because j refers to static member)
    B::j = 6; // OK (because B::j refers to static member)
}
     

- 结束示例]

要解决此问题,您需要提供公共设置者/获取者。您已经拥有getSize()功能,所以不要写这个:

for (int i=0; i<a.size; i++)
//              ^^^^^^

你可以这样写:

for (int i=0; i<a.getSize(); i++)
//              ^^^^^^^^^^^

同样,您必须提供获取/设置array第n个元素值的函数,以便您可以写:

array[i] += a.get_at(i);

请注意,+=左侧的表达式正常,因为array正在通过this访问(另请参阅上面的C ++ 11标准示例)