c – 如何从派生类访问基类中的受保护方法?
作者:互联网
这是一个让我烦恼的代码示例:
class Base {
protected:
virtual void foo() = 0;
};
class Derived : public Base {
private:
Base *b; /* Initialized by constructor, not shown here
Intended to store a pointer on an instance of any derived class of Base */
protected:
virtual void foo() { /* Some implementation */ };
virtual void foo2() {
this->b->foo(); /* Compilator sets an error: 'virtual void Base::foo() is protected' */
}
};
您如何访问受保护的覆盖功能?
谢谢你的帮助. :O)
解决方法:
基类中的受保护成员只能由当前对象访问.
因此,您可以调用this-> foo(),但不允许您调用this-> b-> foo().这与Derived是否为foo提供实现无关.
这种限制背后的原因是,它可以很容易地规避受保护的访问.您只需创建一个类似Derived的类,突然您也可以访问其他类的部分(如OtherDerived),这些类本应该是外人无法访问的.
标签:derived-class,c,protected 来源: https://codeday.me/bug/20191001/1840663.html