Tagged Questions
10
votes
6answers
272 views
Why does virtual inheritance need to be specified in the middle of a diamond hierarchy?
I have diamond hierarchy of classes:
A
/ \
B C
\ /
D
To avoid two copies of A in D, we need to use virtual inheritance at B and C.
class A { };
class B: ...
10
votes
8answers
513 views
When virtual inheritance IS a good design?
EDIT3: Please be sure to clearly understand what I am asking before answering (there are EDIT2 and lots of comments around). There are (or were) many answers which clearly show misunderstanding of the ...
7
votes
2answers
250 views
In C++, should I almost always use virtual inheritance?
I see from this entry that virtual inheritance adds sizeof(pointer) to an object's memory footprint. Other than that, are there any drawbacks to me just using virtual inheritance by default, and ...
7
votes
6answers
393 views
Where is the “virtual” keyword necessary in a complex multiple inheritance hierarchy?
I understand the basics of C++ virtual inheritance. However, I'm confused about where exactly I need to use the virtual keyword with a complex class hierarchy. For example, suppose I have the ...
6
votes
4answers
277 views
is virtual inheritance from pure abstract classes (interfaces) necessary
Why is it that in the code below the compiler complains that PureAbstractBase is an ambiguous base class of MultiplyInheritedClass? I realize I have two copies of the PureAbstractBase in ...
6
votes
6answers
2k views
C++ Multiple Virtual Inheritance vs. COM
The net is overflowing with explanations of the "dreaded diamond problem".
So is StackOverflow. I think I understand that bit, but I fail to translate that knowledge into comprehending something ...
4
votes
4answers
382 views
Method resolution order in C++
Consider the following class hierarchy:
base class Object with a virtual method foo()
an arbitrary hierarchy with multiple inheritance (virtual and non-virtual); each class is a subtype of Object; ...
3
votes
4answers
302 views
Can't cast a class with multiple inheritance
I am trying to refactor some code while leaving existing functionality in tact. I'm having trouble casting a pointer to an object into a base interface and then getting the derived class out later. ...
3
votes
3answers
218 views
Virtual Inheritance : Base Ctor not calling in Most Derived Class?
class Base
{
public:
Base(){}
Base(int k):a(k)
{
}
int a;
};
class X:virtual public Base
{
public:
X():Base(10){}
...
2
votes
2answers
72 views
Using virtual inheritance on “final” classes in unfinished class heirarchies
Is there any harm or is it considered bad design to preemptively derive virtually classes in an unfinished class hierarchy that are currently "at the bottom" (i.e., the most derived)? Is there a good ...
2
votes
3answers
984 views
Virtual tables and virtual pointers for multiple virtual inheritance and type casting
I am little confused about vptr and representation of objects in the memory, and hope you can help me understand the matter better.
Consider B inherits from A and both define virtual functions f(). ...
2
votes
7answers
839 views
Resolving ambiguous this pointer in C++
I'm trying to derive a new class from an old one. The base class declaration looks like this:
class Driver : public Plugin, public CmdObject
{
protected:
Driver();
public:
static Driver* ...
2
votes
2answers
219 views
Asymetric virtual Inheritence diamond in C++
So I have this idea and I think it's basically impossible to implement in C++... but I want to ask. I read through chapter 15 of Stroustrup and didn't get my answer, and I don't think the billion ...
1
vote
0answers
150 views
Size of a class with virtual base class [closed]
Possible Duplicate:
object size with virtual
class X {};
class Y : public virtual X {};
class Z : public virtual X {};
class Class : public Y, public Z {};
Why sizeof(Class) outputs ...