我有一个带有几个公共方法的基类,并且想派生一个只继承某些函数的子类,所以我使用私有继承派生了子类。此外,我多次遇到(包括 C++ 入门加)私有继承几乎与包含完全一样。现在我有一个问题,我想使用 Base 中定义的函数在派生类中可用。
除了基类所需的那些,派生类没有任何私有成员。我不确定如何为派生类定义公共方法“func”,如代码所示。
class Base
{
private:
double *p;
public:
Base(int m, int n);
void fun(const Base & obj1, const Base & obj2)
};
class Derived : private Base
{
public:
Derived(int n) : Base(1,n) {}
void fun(const Derived & obj1,const Base & obj2)
{
/* The function fun in derived class works almost exactly
like fun in Base class but I don't know how to call
Base.Fun(...). Also all the data needed to perform
operations in this function is a part of the private
member of the base class which the Derived member can't
access.
*/
}
}
如果我要使用遏制,我可以定义如下:
class Derived
{
private:
Base P;
public:
void fun(const Derived & obj1,const Base & obj2)
{
Base :: P.func(obj1.P,obj2);
}
};
这让我想知道在这里包含是否比私有继承更合适。另一方面,我不确定这两种实现是否正确。所以我正在寻找可能的方法来做到这一点。
请注意,我没有在上面的代码中显示复制构造函数、赋值和运算符以及其他一些方法,但我知道它们的要求。这些代码只是为了显示私有继承和包含的基本目的。