问题描述
- 字样的继承关系,为什么会提示:无法访问 protected 成员
-
#includeusing namespace std;
template
class B1
{
public:
void SayHi()
{
T* pT = static_cast(this);pT->PrintClassName();
}
protected:
void PrintClassName() { cout << "This is B1"; }
};class D1 : public B1
{
// No overridden functions at all
};class D2 : public B1
{
protected:
void PrintClassName() { cout << "This is D2"; }
};int main()
{
D1 d1;
D2 d2;d1.SayHi(); // prints "This is B1" d2.SayHi(); // prints "This is D2" return 0;
}
编译错误:error C2248: “D2::PrintClassName”: 无法访问 protected 成员(在“D2”类中声明)
解决方案
D2 中定义的 PrintClassName,屏蔽了基类中同名的函数。
你在 D2 中又没有实现类似于 B1 中的 SayHi,想直接访问 D2 类中的保护成员 PrintClassName 是不行的。
因为:protected:可以被1.该类中的函数、2.子类的函数、以及3.其友元函数访问。
但不能被该类的对象访问。
解决方案二:
多谢你的解释!正解~
把D2的protected改成public就对了。
时间: 2024-10-01 10:37:25