gpt4 book ai didi

c++ - C++ 中不可访问的继承函数

转载 作者:太空宇宙 更新时间:2023-11-04 14:40:01 25 4
gpt4 key购买 nike

我正在用 Visual C++ 2010 编写一个小程序。

这是基类的代码:

class BaseInfo {

private:
std::map <std::string, std::string> info;
std::vector<std::string> extra_info_key;
public:
uint get_id ();
//Other function is hidden
};

uint BaseInfo::get_id () {
return (uint)atoi ((info["ID"]).c_str());
}

然后我创建一个派生类,声明为:

class test:BaseInfo {
public:
void f();
};

void test::f (test& inf) {
cout<<inf.get_id()<<endl;
}

但是我得到一个错误:

function "BaseInfo::get_id is inaccessible.

我一头雾水,好像都是c++的规则。

最佳答案

您正在使用私有(private)继承,这就是原因。变化:

class test : BaseInfo

到:

class test : public BaseInfo

有关公共(public)、 protected 和私有(private)继承的更多信息,请查看 here

关于c++ - C++ 中不可访问的继承函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7955808/

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