Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the meaning of "virtual" inheritance?

I saw the following code, and didn't understand the meaning of the keyword virtual in the following context:

class A {};
class B : public virtual A;
share|improve this question
1  
possible duplicate of In C++ virtual base class? – Johnsyweb May 6 '12 at 5:02

5 Answers

up vote 11 down vote accepted

Have a read of this (it's been asked before).

share|improve this answer

Virtual inheritance is used to solve the DDD problem (Dreadful Diamond on Derivation).

Look at the following example, where you have two classes that inherit from the same base class:

class Base
{

public:

 virtual void  Ambig();

};

class C : public Base
{

public:

//...

};

class D : public Base
{
public:

    //...

};

Now, you want to create a new class that inherits both from C and D classes (which both have inherited the Base::Ambig() function):

class Wrong : public C, public D
{

public:

...

};

While you define the "Wrong" class above, you actually created the DDD (Diamond Derivation problem), because you can't call:

Wrong wrong;
wrong.Ambig(); 

This is an ambiguous function because it's defined twice:

Wrong::C::Base::Ambig()

And:

Wrong::D::Base::Ambig()

In order to prevent this kind of problem, you should use the virtual inheritance, which will know to refer to the right Ambig() function.

So - define:

class c : public virtual Base

class D : public virtual Base

class Right : public C, public D
share|improve this answer
1  
Wrong could very well be Correct. It depends on the situation. Normal MI and virtual MI both have their places, even in the presense of (not-dreadful) diamond patterns that arise. Just remember that there is no size that fits all. – Thomas Eding Dec 25 '12 at 21:12

Read this, if you want learn about object layout.

http://www.cse.wustl.edu/~mdeters/seminar/fall2005/mi.html

share|improve this answer

At school we learned one simple tip: whenever you use multiple inheritance, make it virtual... unless you really know what you're doing :)

share|improve this answer

Isn't it as simple as "virtualness is inherited"? I.e., if you inherit a class with a virtual function - the function will still be virtual in it's subclass irrespective of the subclass definition?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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