我正在学习类继承,我想知道如何创建指向另一个类私有继承的类的指针?我在下面包含了一个简单的示例。非常感谢那些帮助回答这个问题的人。
class A: private std::string
{
public:
A(){}
~A(){}
void func1()
{
// I want a pointer that points to the std::string object. Then I will use that pointer in this function
}
};
我正在学习类继承,我想知道如何创建指向另一个类私有继承的类的指针?我在下面包含了一个简单的示例。非常感谢那些帮助回答这个问题的人。
class A: private std::string
{
public:
A(){}
~A(){}
void func1()
{
// I want a pointer that points to the std::string object. Then I will use that pointer in this function
}
};