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;
|
What is the meaning of "virtual" inheritance? I saw the following code, and didn't understand the meaning of the keyword
|
|||||
|
|
Have a read of this (it's been asked before). |
|||
|
|
|
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:
Now, you want to create a new class that inherits both from C and D classes (which both have inherited the Base::Ambig() function):
While you define the "Wrong" class above, you actually created the DDD (Diamond Derivation problem), because you can't call:
This is an ambiguous function because it's defined twice:
And:
In order to prevent this kind of problem, you should use the virtual inheritance, which will know to refer to the right So - define:
|
|||||
|
|
Read this, if you want learn about object layout. |
|||
|
|
|
At school we learned one simple tip: whenever you use multiple inheritance, make it virtual... unless you really know what you're doing :) |
|||
|
|
|
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? |
|||
|
|