将参数通过抽象类传递给祖父母类的构造函数

时间:2012-02-28 02:19:35

标签: c++ inheritance

我有一个由库提供的课程Grandparent。我想为Grandparent的子类定义一个接口,所以我创建了一个名为Parent的抽象子类:

class Grandparent {
    public:
        Grandparent(const char*, const char*);
};

class Parent : public Grandparent {
    public:
        virtual int DoSomething() = 0;
};

Grandparent的构造函数有两个参数。我希望我的子类Child也有一个带有两个参数的构造函数,并将它们传递给Grandparent的构造函数......类似于

class Child : public Parent {
    public:
        Child(const char *string1, const char *string2)
        : Grandparent(string1, string2)
        {}

        virtual int DoSomething() { return 5; }
};

当然,Child的构造函数不能调用其祖父类的构造函数,只能调用其父类的构造函数。但由于Parent不能有构造函数,我如何将这些值传递给祖父母的构造函数?

2 个答案:

答案 0 :(得分:3)

Parent当然可以有一个构造函数。如果要使用任何参数调用Grandparent构造函数,它必须。

没有什么禁止抽象类具有构造函数,析构函数或任何其他类型的成员函数。它甚至可以有成员变量。

只需将构造函数添加到Parent即可。在Child中,您将调用Parent构造函数;你不能用构造函数调用“跳过一代”。

class Parent: public Grandparent
{
public:
  Parent(char const* string1, char const* string2):
    Grandparent(string1, string2)
  { }
  virtual int DoSomething() = 0;
};

答案 1 :(得分:2)

如果您想要除Parent的默认构造函数以外的其他内容,则需要提供它。

查看此question about inheriting constructors

另请参阅此example of an abstract class