gpt4 book ai didi

c++ - 继承期间不可访问的基础

转载 作者:行者123 更新时间:2023-11-30 02:14:07 25 4
gpt4 key购买 nike

我在用 C++ 练习继承时遇到错误。我尝试谷歌搜索,但我感到困惑。任何人都请帮助我。

    #include <iostream>

using namespace std;

class complex{
protected:
int a;
complex(int a){
this->a=a;
}
virtual void showData()=0;
};

class display:private complex{
public:
display(int a=0):complex(a){
}
void showData(){
cout << a << endl;
}
display operator +(complex &c2){
display c3=this->a+c2.a;
return c3;
}
};

int main()
{
display c1=5, c2=7, c3;
c3=c1+c2;
c3.showData();
return 0;
}

我得到的错误是:

In member function 'display display::operator+(complex&)':|
error: 'int complex::a' is protected|
error: within this context|
In function 'int main()':
error: 'complex' is an inaccessible base of 'display'|
||=== Build failed: 3 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|

最佳答案

派生类只能访问它自己的基类子对象的公共(public)或 protected 数据成员。

在这种情况下

display operator +(complex &c2){
display c3=this->a+c2.a;
return c3;
}

对象 c2 不是派生类的子对象。因此,在运营商内部,您可能无法访问其 protected 数据。

按以下方式更改运算符

display operator +( const display &c2){
return this->a + c2.a;
}

关于c++ - 继承期间不可访问的基础,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58396501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com