Tagged Questions
The virtual-inheritance tag has no wiki summary.
19
votes
2answers
285 views
Downcast in a diamond hierarchy
Why static_cast cannot downcast from a virtual base ?
struct A {};
struct B : public virtual A {};
struct C : public virtual A {};
struct D : public B, public C {};
int main()
{
D d;
A& a = ...
13
votes
1answer
319 views
C++ Inheritance via dominance warning
I'm trying to implement a rather large object that implements many interfaces. Some of these interfaces are pure virtual. I may have a problem in diamond inheritance. Visual Studio is reporting a ...
12
votes
4answers
272 views
How C++ virtual inheritance is implemented in compilers?
How the compilers implement the virtual inheritance?
In the following code:
class A {
public:
A(int) {}
};
class B : public virtual A {
public:
B() : A(1) {}
};
class C : public B {
...
12
votes
2answers
460 views
C++ multiple inheritance preventing diamond
Is there a way to define a class Foo in C++
so that
I can inherit from it
I can't "diamond inherit" from it
I.e.
class Cat: public Foo{} // okay
class Dog: public Foo{} // okay
class Weird: ...
11
votes
4answers
633 views
C++ private virtual inheritance problem
In the following code, it seems class C does not have access to A's constructor, which is required because of the virtual inheritance. Yet, the code still compiles and runs. Why does it work?
class A ...
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 ...
9
votes
3answers
87 views
How to detect and assert virtual inheritance for a specific class?
I have a C++ class that implements reference-counting and I want all users of this class to inherit from this class only virtually so that no object ends up with more than one reference counter.
I'd ...
8
votes
5answers
254 views
Is there any penalty of virtual inheritance in C++?
I haven't found any straight answer, so I decided to open a new question. I'd like to know if using virtual inheritance in C++ has a runtime penalty in compiled code, when we call regular function ...
8
votes
6answers
2k views
final class in c++
class Temp
{
private:
~Temp() {}
friend class Final;
};
class Final : virtual public Temp
{
public:
void fun()
{
cout<<"In base";
}
};
class Derived : public ...
7
votes
2answers
248 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
3answers
894 views
C++: calling a virtual base class's overloaded constructor
is there a (practicable) way to by-pass the normal (virtual) constructor calling order? (Hard to describe in one sentence, see the)
Example:
class A
{
const int i;
public:
A()
: ...
7
votes
6answers
392 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
1answer
147 views
C++, ambiguous inheritance error in vs 2010
I have some troubles with the application of polymorphism in this example. This question is similar to my last question
C++, virtual inheritance, strange abstract class + clone problem
There are 3 ...
6
votes
4answers
276 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 ...
5
votes
3answers
152 views
Why is single virtual inheritance not enough to resolve the dreaded diamond problem?
struct B { int i; };
struct D1 : virtual B {};
struct D2 : B {}; // <-- not virtual
struct DD : D1, D2 {};
Having coded above, still the compiler demands D2 also to be virtual:
DD d;
d.i = 0; ...
4
votes
4answers
133 views
Virtual Inheritance Confusion
I'm reading about inheritance and I have a major issue that I haven't been able to solve for hours:
Given a class Bar is a class with virtual functions,
class Bar
{
virtual void Cook();
}
What ...
4
votes
4answers
61 views
Parametrized constructor in virtually inheriting abstract class
I have a classical virtual inheritance diamond:
class A {
protected:
A(const char *x) { ... }
}
class B: public virtual A {
protected:
B(): A(NULL) { ... }
public:
virtual void foo() = ...
4
votes
5answers
161 views
Why can't static_cast be used to down-cast when virtual inheritance is involved?
Consider the following code:
struct Base {};
struct Derived : public virtual Base {};
void f()
{
Base* b = new Derived;
Derived* d = static_cast<Derived*>(b);
}
This is prohibited by ...
4
votes
5answers
209 views
Is Virtual Inheritance necessary for Exceptions?
I understand the need for virtual inheritance when using multiple inheritance -- it solves the Dreaded Diamond Problem.
But what if I'm not using multiple inheritance? Is there a need for virtual ...
4
votes
4answers
263 views
Diamond shaped polymorphic Inheritance: sizeof Most derived Class
I understand that the Diamond shaped inheritance causes ambiguity and it can be avoided by using inheritance through virtual Base Classes, the question is not about it. The question is about sizeof ...
4
votes
4answers
199 views
MSVC9.0 bug or misunderstanding of virtual inheritance and friends?
consider the following code:
class A
{
friend class B;
friend class C;
};
class B: virtual private A
{
};
class C: private B
{
};
int main()
{
C x; //OK default constructor generated ...
4
votes
4answers
380 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; ...
4
votes
2answers
622 views
Virtual inheritance - gcc vs. vc++
I have a problem with Visual Studio 2008 concerning virtual inheritance.
Consider the following example:
#include<iostream>
class Print {
public:
Print (const char * name) {
...
4
votes
4answers
737 views
Are different compilers' C++ virtual inheritance implementations incompatible?
I have hierarchy of public interfaces like this:
struct ISwitchable {
/* Obtain pointer to another implemented interface of the same instance. */
virtual int switch(unsigned int ...
3
votes
4answers
101 views
Class sizes with virtual inheritance in C++
#include<iostream>
using namespace std;
class abc
{
int a;
};
class xyz : public virtual abc
{
int b;
};
int main()
{
abc obj;
xyz obj1;
...
3
votes
4answers
70 views
How to have a derived class use the base implemention to satisfy an interface
I have the following two interfaces, which are not part of an inheritance hierarchy. I then have two concrete classes, one which derives from the other.
class ICar {
public:
virtual void ...
3
votes
2answers
183 views
Does virtual inheritance and virtual function use the same vtable?
There is one little related question. But the topic is entirely different.
Now, one concept is about the function resolution and another is about class resolution ? I am wondering that how is it ...
3
votes
4answers
323 views
Performance impact of virtual inheritence
I am considering using virtual inheritence in a real-time aplpication. Does using virtual inheritence have a performance impact similar to that of calling a virtual function? The objects in question ...
3
votes
1answer
102 views
Nested inheritance in C++
I've got question about nested inheritance in C++. I have three classes: Base, Middle and Top. Normally I use public inheritance when deriving from Middle, but I have one class (Top) which have ...
3
votes
2answers
297 views
C++ virtual inheritace and typecasting/copy constructor confusion
I have the code below:
class A
{
};
class B: public virtual A
{
public:
B()
{
cerr << "B()";
}
B(const A& a)
{
cerr << "B(const A&)";
}
};
...
3
votes
4answers
301 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
4answers
318 views
Question about Virtual Inheritance hierarchy
I encounter this problem when tackling with virtual inheritance. I remember that in a non-virtual inheritance hierarchy, object of sub-class hold an object of its direct super-class. What about ...
3
votes
3answers
216 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){}
...
3
votes
2answers
596 views
Pure Virtual Class and Collections (vector?)
I'm working on a graphics application that is using virtual classes fairly extensively. It has:
A picture class, which is essentially a collection of shapes.
A shapes class, which is purely virtual ...
2
votes
1answer
72 views
C++ abstract base class constructors/destructors - general correctness
Recently I have dumb as a developer, so I took the plunge, got a C++ book and learning how to do things properly. In my head, I know what I would like to do. I effectively want an Interface that when ...
2
votes
3answers
86 views
single virtual inheritance
I understand that virtual inheritance of a base class creates a common shared base class among multiple derived classes, thus addressing the DDD problem. If I have only one derived class for my base ...
2
votes
5answers
84 views
Virtual inheritance (diamond) - Why do I need to upcast to Base class from the most Derived class
consider the following :
#include <iostream>
#include <string>
using namespace std;
class A {
public:
A(const char* sName) //conversion constructor
: _sName(sName) ...
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
2answers
216 views
Should you write “public virtual” or “virtual public” in virtual inheritance?
Based on http://en.wikipedia.org/wiki/Virtual_inheritance
class Animal
{
...
};
// Two classes virtually inheriting Animal:
class Mammal : public virtual Animal
{
...
};
I also saw books use the ...
2
votes
2answers
402 views
C++: inheriting overloaded non-virtual method and virtual method both with the same name causes problem
I am trying to inherit two equally named methods with different parameter lists to a derived class. One of them is virtual and overridden in the derived class, the other one is non-virtual. Doing so, ...
2
votes
3answers
979 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
836 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
4answers
625 views
gcc c++ virtual inheritance problem
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 ...
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
2answers
66 views
Virtual inheritance from base class
AFAIK, Virtual inheritance solves the diamond problem but what if I use virtual to simply inherit from base class? Whats the difference with using virtual here?
class A
{
/* ... */
};
class B : ...
1
vote
4answers
80 views
Meaning of 'virtual' in classes
In following case, virtual is used to solve the diamond problem to have sub-object of class A shared with B and C.
For example:
class A { };
class B : virtual public A { };
class C : virtual public ...
1
vote
2answers
165 views
c++ : call overwritten child function within parent function
is it possible in c++ to call a child function from a parent function.
Let's take an example: The parent class defines in a function (parse) the general workflow. The workflow then calls different ...
1
vote
1answer
35 views
Special name for first non abstract virtual method without code?
This questions comes from another similar question. Sometimes I have to deal with this case.
Do you know if exist an special name in Object Oriented Programming, for a initial method that has been ...