Problem:

class Base {
public:
  Base(Base* pParent);
... implements basic stuff...
};

class A : virtual public Base {
public:
  A(A* pParent) : Base(pParent) {}
...
};

class B : virtual public Base {
public:
  B(B* pParent) : Base(pParent) {}
...
};

class C : public A, public B {
public:
  C(C* pParent) : A(pParent), B(pParent) {}   - Compilation error here
...
};

At the position given, gcc complains that it cannot match function call to Base(), i.e. the default constructor. But C doesn't inherit directly from Base, only through A and B. So why does gcc complain here?

Ideas? TIA /Rob

link|improve this question

68% accept rate
Compilation is done with no-rtti set, might be a problem? – Robert Jan 24 '10 at 9:05
No, inheritance is a compile-time thing, RTTI will not be required. – GManNickG Jan 24 '10 at 9:09
feedback

4 Answers

up vote 13 down vote accepted

virtual base classes are special in that they are initialized by the most derived class and not by any intermediate base classes that inherits from the virtual base. Which of the potential multiple initializers would the correct choice for initializing the one base?

If the most derived class being constructed does not list it in its member initalization list then the virtual base class is initialized with its default constructor which must exist and be accessible.

Note that a virtual base identifier is allowed to be use in a constructor's initializer list even if it is not a direct base of the class in question.

link|improve this answer
+1, Most precise answer :) – Prasoon Saurav Jan 24 '10 at 9:25
feedback

You need to explicitly call the constructor for Base from C:

class C : public A, public B {
public:
C(C* pParent) : Base(pParent), A(pParent), B(pParent) {}
/*... */
};
link|improve this answer
feedback

If you declare a custom constructor, the default constructor is disabled. In virtual inheritance you need to call the virtually inherited constructor directly because otherwise it would not know whether to initialize by A or by B.

link|improve this answer
feedback

Thanks everyone, got it all working. Makes sense really, I just have an odd feeling that I did this once in VC++ and I didn't get these errors, but it is possible that my virtual base class in that case had just the default constructor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.