Virtual Inheritance is used to solve the Dreaded Diamond Problem associated with multiple inheritance in C++.

learn more… | top users | synonyms

3
votes
2answers
35 views

C++ virtual inheritance initializer list

in the following code: class A { public: int x; A(int x):x(x){} }; class B: public virtual A { public: B(int x):A(x){} }; class C: public virtual A { public: C(int x):A(x){} }; class ...
0
votes
4answers
91 views

c++ virtual inheritance: Implementation difference

I know the usage of virtual inheritance: class A { public: void Foo() {} }; class B : public virtual A {}; class C : public virtual A {}; class D : public B, public C {}; What I want to know is the ...
0
votes
1answer
25 views

Why does declaring runtime polymorphism for template instantiations result in linker error?

I have a perfectly working code: template <typename ...Ts> class ThreadImplementation { ... void launch(){...} ~ThreadImplementation(){...} }; ... ThreadImplementation<Ts...> ...
1
vote
1answer
64 views

g++ Assembly Output of Simple Program using Virutal Inheritance

I want to make sure I am understanding what my code is actually being compiled down to before an exe/library is made from it. I have the following program written in C++98. Which stems from this ...
6
votes
2answers
178 views

Force deriving from a class virtually

We have a special framework for interfaces in our project, and part of the requirements is that classes which represent an interface may only be used as virtual base classes, not as non-virtual ones. ...
0
votes
2answers
113 views

Some basic Inheritance problems in C++

I am learning OO in C++ programming these days in VS2010. I meet with some basic Inheritance problems in C++. Here is my code: Question 1: class bs { public: int a; virtual void name(){}; }; ...
2
votes
1answer
89 views

Is it possible to write an exception type that “catches” multiple different exceptions?

I was wondering whether it would be possible (through clever conversion rules) to write an "exception" class that would help with the following: Instead of writing: try { ... } catch ...
1
vote
1answer
58 views

Size of class derived from multiple inherited class with virtual function

Consider the diamond scenario below: class Base { int x; public: virtual ~Base(){} }; class Derived1 : virtual public Base { int y; }; class Derived2 : virtual public Base { int z; ...
1
vote
2answers
69 views

virtual inheritance from base struct

struct A { int i; virtual void f() { cout << i; } A() { i = 1; } A(int _i) : i(_i) {} }; struct B : A { B() : A(2) { f(); } void f() { cout << i+10; } }; struct C : B, virtual A { C() : ...
0
votes
2answers
87 views

Virtual Base Class in C++

I have a query regarding the virtual base class. In order to resolve the "dreaded diamond of death" /ambiguity problem in multiple inheritance, virtual base class is introduced. class A { public: ...
6
votes
2answers
128 views

Do all derived classes from a hierarchy require access to the virtual base class?

When I try to compile the following code: class A { public: A(int v) : virt(v) { } int virt; int getVirt(void) const { return virt; } }; class B : private virtual A { protected: ...
0
votes
3answers
75 views

size of derived class in virtual inheritance

#include "stdafx.h" #include <iostream> using namespace std; class ClassA { protected: int width, height; public: void set_values(int x, int y) { width = ...
2
votes
1answer
151 views

websocket++ using fastcgi++'s session example

I'm brand new to c++ and know next to nothing about web protocols or websockets, so this may seem ridiculous. I make websites that are 100% ajax and want to incorporate websockets. Fastcgi++ is ...
1
vote
1answer
84 views

size of derived class [duplicate]

I am new to C++ programming, in the below code i am using virtual inheritance so size of derived class is showing 24 bytes but i am not getting how it is so please help me how exactly it is. ...
3
votes
2answers
108 views

Virtual but not multiple inheritance to call grandparent constructor

I'm having this kind of code: class Ref {<undefined>}; Ref refObjectForA, refObjectForB; class Base { public: Base(const Ref & iRef) : _ref(iRef) {} virtual ~Base() {} const ...
0
votes
0answers
45 views

Calling member of Derived class from virtual function

I'm a little bit confused concerning virtual functions. Lets suppose you have Base class with virtual function foo(), and that function then overridden in Derived class class Baseclass { ...
5
votes
2answers
150 views

C++: Virtual Inheritance

Consider the code below: #... class A {}; class B: public A{}; class C: virtual public A{}; class D: virtual public C{}; // No More Classes ... int _tmain(int argc, _TCHAR* argv[]) { ...
0
votes
2answers
87 views

c++ template multiple inheritance from an interface

So I have this problem. Basicly I have a templated interface: template <typename T, typename U> class Iinterface { public: virtual ~Iinterface() // A pure methode for the ...
2
votes
1answer
81 views

Inheriting from multiple/diamond Inheritance

i have the following scenario: class A { public: A(std::string id); }; class B : public virtual A { public: B(); }; class C : public virtual A { public: C(); }; class D : public ...
0
votes
1answer
103 views

When using a virtual base class in a multiple inheritance scenario, is it necessary for all derived classes to reference the virtual base?

The US Air Force's JSF C++ coding standard requires that the virtual base class be declared for each derived class that accesses the virtual base. For example, in the following hierarchy: A / \ ...
2
votes
1answer
78 views

Pure virtual interface implemention in the cpp file

Is it good practice to put the implementation of a pure virtual interface in a cpp and skip the header file completely? A.h struct A { virtual void func() = 0; }; B.cpp class B : public A { ...
2
votes
1answer
75 views

A delegate to a virtual method where does it point to (base/derived)?

I recently started using C++/Cli for wrapping purposes. Now I'm at a point where I've to know more about the internals. Consider the following code: Header file (ignoring .NET namespaces for this ...
3
votes
1answer
183 views

Eliminate duplicate entries from C++11 variadic template arguments

I'm using variadic templates with multiple virtual inheritance in C++ to aggregate types into a single structure definition. Here is a sample set of structures: struct meas { int i; }; struct meas2 ...
1
vote
4answers
109 views

What happens to a virtual base class on being derived in multilevel inheritance?

While playing around with inheritance, i happened to try this : class A { int i; }; class B : virtual public A { int j; }; class C : public B { int k; }; int main() { ...
3
votes
2answers
133 views

Virtual Inheritance, one class enough?

I understand the concept of virtual inheritance, but I couldn't find the answer to this anywhere. Say you have class D which inherits class B and C. Both B and C inherit class A. So you could make B ...
5
votes
3answers
203 views

Complex diamond issue: C++ virtual inheritance

I have a diamond problem which look like this: __ A / |\ | B | \ v|/v v\|v \v B2 B3 C \v /v / B4 / \ / D I tried many way to make the best virtual ...
1
vote
4answers
137 views

Alternative to direct inheritance

I have two classes class A and class B. I want class B to have functionality of class A plus some more functionality of its own. One of the very simple ways to do this is to inherit class B from class ...
1
vote
1answer
227 views

A design qustion about C++ interface(pure virtual class)/multiple inheritance/virtual inheritance

I want to reconstruct my small 3d-engine, it is very small so i place all files in only one project. now, i want to reconstruct it with interfaces, so i can disperse different modules to the different ...
0
votes
2answers
100 views

What will be the sequence of inheritance [closed]

What will be the sequence of inheritance and what does the following code mean class A { int a; virtual void display() { cout<<"A"; } } class B { int b; virtual void ...
4
votes
3answers
117 views

c++ virtual classes: interesting point

Please tell me why the output is as below for the following program. I am not getting the virtual classes in c++. observe the below code: class B { public: B(char c = 'a') : m_c(c) {} public: ...
1
vote
1answer
165 views

Initializing virtual inheritance hierarchy

Consider the following virtual inheritance hierarchy #include <string> #include <iostream> struct base { base() = default; base( std::string const& s ) : s_(s) {} std::string ...
13
votes
5answers
449 views

Diamond-inheritance scenario compiles fine in G++, but produces warnings/errors in VC++/Eclipse

I have a base class 'Base', which is a pure virtual class: class Base { public: virtual void A() = 0; virtual void B() = 0; virtual ~Base() { } // Eclipse complains that a class with ...
2
votes
2answers
751 views

Equivalent of Java interfaces in C++? [duplicate]

Possible Duplicate: How do you declare an interface in C++? Interface as in java in c++? I am a Java programmer learning C++, and I was wondering if there is something like Java ...
1
vote
1answer
82 views

Defining multiple derived Interface Members

I hope you can help me with the following problem. I am trying to create a flexible system of interfaces and hit a problem. This is the relevant code: // Interface 1 // this: virtual f_a // ...
6
votes
3answers
638 views

Virtual inheritance vs. non-default constructors

This code is rejected by (at least) MSVC, ICC, and GCC: class A { public: A( int ) { } }; class B: virtual public A { public: //B(): A( -1 ) { } // uncomment to make it compilable ...
4
votes
2answers
261 views

Inherit from multiple partial implementations of an abstract base class?

Is it possible to have a number of partial implementations of an abstract interface, and then collect these partial implementations into a single concrete class by using multiple inheritence? I have ...
2
votes
1answer
787 views

Virtual tables and memory layout in multiple virtual inheritance

I have a several questions about multiple and virtual inheritance. Consider following code: struct A { int a; A() { f(0); } A(int i) { f(i); } virtual void f(int i) { cout << i; } ...
1
vote
3answers
337 views

C++ “triangle” (and not diamond) inheritance

(I searched and read thru the Diamond- and virtual-inheritance questions here, but could not find an answer. My thinking is that this situation is a little unusual, and I am willing to entertain the ...
4
votes
4answers
432 views

Does “virtual base class in the case of multilevel inheritance” have significance

Consider the following sample codes which shows multilevel inheritance: Case1 : Here the class derived1 is derived from the class base through virtual inheritance and the class derived2 is derived ...
1
vote
1answer
189 views

Virtual inheritance and interfaces

class IA { public: virtual void a() = 0; }; class A: virtual public IA { public: virtual void a() { } }; class IB: virtual public IA { public: virtual void b() = 0; }; class B: ...
1
vote
1answer
44 views

Javascript inheritance with several layers: A->B->C, use functions from A in C

In javascript I want to achieve the following: Class A (Array) -> Class B (EntityContainer) -> Class C (EntityList) In Code: function EntityContainer() { ... } EntityContainer.prototype = new ...
3
votes
2answers
183 views

Does virtual inheritance increase the size of derived class? [duplicate]

Possible Duplicate: object size with virtual Does virtual inheritance change the size of the derived class? I executed the following code, where I have two derived classes one virtually ...
1
vote
6answers
335 views

Why does virtual keyword increase the size of derived a class?

I have two classes - one base class and one derived from it : class base { int i ; public : virtual ~ base () { } }; class derived : virtual public base { int j ; }; main() { cout << ...
0
votes
1answer
105 views

Multiple inheritance diamond

Here is the code: class Vehicle { public : Vehicle () { cout << " Vehicle Constructor " << endl ; } virtual ~ Vehicle () { ...
4
votes
3answers
191 views

What is multiple virtual inheritance?

class foo : public virtual bar, public virtual kung { // implementation of the method of the above inherited class }; the bar and kung class is an abstract class that contains pure virtual method ...
5
votes
4answers
921 views

Ambiguity in multiple inheritance of interfaces in C++

I made a test code as following: #include <iostream> using namespace std; #ifndef interface #define interface struct #endif interface Base { virtual void funcBase() = 0; }; interface ...
1
vote
3answers
97 views

virtual inheritance

If I have something like class Base1 {}; class Base2 {}; class Derived : public Base1, public Base2 {}; Then order of constructor call on making object of Derived is Base1 Base2 i.e in the ...
0
votes
0answers
123 views

is this a good use of virtual inheritance?

I want to track the deletion of object of some selected classes, with minimal changes in the classes code itself. I considered overloading the delete operator (globally), but it would require that my ...
0
votes
1answer
176 views

Virtual multiple inheritance - final overrider

while trying to analyse in greater depth inheritance mechanism of C++ I stumbled upon the following example: #include<iostream> using namespace std; class Base { public: virtual void f(){ ...
0
votes
1answer
251 views

virtual vs non-virtual multiple inheritance in c++

I am currenlty trying to grasp the concept of multiple virtual/non-virtual inheritance in c++. if I understand correctly if a class B and C inherit virtually from class A, they share a kind of ...

1 2 3