Tagged Questions

In object-oriented programming languages with multiple inheritance and knowledge organization, the diamond problem is an ambiguity that arises when two classes B and C inherit from A, and class D inherits from both B and C.

learn more… | top users | synonyms

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
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: ...
10
votes
3answers
333 views

C++ virtual override functions with same name

I have something like that (simplified) class A { public: virtual void Function () = 0; }; class B { public: virtual void Function () = 0; }; class Impl : public A , public B { ...
9
votes
4answers
175 views

Inheritance by dominance - is it really bad?

I'm one of those people that has to get their code to compile with 0 warnings. Normally I respect the compiler and if it issues me a warning I take it as a sign that I should touch up my code a ...
9
votes
2answers
217 views

multiple inheritance without virtual functions in c++

hej! I came across the diamond problem and found different solutions for different cases with a single diamond. However I couldn't find a solution for 'chained' diamonds. According to the structure: ...
9
votes
6answers
747 views

Java: how do you call this multiple inheritance ambiguity?

Here's an example using multiple interface inheritance in Java and there's an issue. Note that I fully know why there's an issue and this is not the point of my question. The question is about how ...
8
votes
4answers
295 views

How does the compiler internally solve the diamond problem in C++?

We know that we can solve the diamond problem using virtual inheritance. For example: class Animal // base class { int weight; public: int getWeight() { return weight;}; }; ...
8
votes
7answers
215 views

Question about multi-inheritance in C++?

I have the following code: #include "stdafx.h" #include <iostream> #include <conio.h> using namespace std; #define MNAME 30 class Person { public: char name[MNAME + 1]; }; class ...
8
votes
6answers
2k views

C++ - downcasting a diamond shape inherited object without RTTI/dynamic_cast

I'm currently working on integrating a third-party package that uses lots of RTTI stuff on a non-RTTI platform (Android). Basically, I did my own RTTI implementation but I'm stuck on a problem. The ...
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; ...
5
votes
2answers
254 views

C++ Multiple Inheritance - why you no work?

I am trying to figure out an interesting multiple inheritance issue. The grandparent is an interface class with multiple methods: class A { public: virtual int foo() = 0; virtual int bar() = ...
5
votes
6answers
322 views

Why is there ambiguity in this diamond pattern?

#include <iostream> using namespace std; class A { public: void eat(){ cout<<"A";} }; class B: public A { public: void eat(){ cout<<"B";} }; class C: public A { ...
4
votes
4answers
68 views

Virtual Extension Methods in upcoming Java 8 release

When I see code snippets like interface A { void a(); void b() default { System.out.println("b"); }; void c() final { System.out.println("c"); }; } I have one question. ...
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
6answers
445 views

Diamond problem when using MixIns in Python

Please consider the following code implementing a simple MixIn: class Story(object): def __init__(self, name, content): self.name = name self.content = content class ...
4
votes
5answers
1k views

Multiple Inheritance in java

Java is not allowing inheritance from multiple classes (still it allows inheritance from multiple interfaces.), I know it is very much inline with classic diamond problem. But my questions is why java ...
3
votes
1answer
70 views

Diamond inheritance with mixed inheritance modifers (protected / private / public)

let's say we have class A,B,C,D where A is base, B,C are between and D is derived in diamond model. NOTE: class B inherits virtualy class A in private mode, class C inherita virtualy class A in ...
3
votes
3answers
245 views

C++ Weird Diamond inheritance issue

I have this A / \ B C \ / D A has a pure virtual function, prototyped as: virtual A* clone(void) const = 0; B and C virtually inherit from A ( class B: public virtual A, ...
3
votes
6answers
6k views

Multiple inheritance + virtual function mess

I have a diamond multiple inheritance scenario like this: A / \ B C \ / D The common parent, A, defines a virtual function fn(). Is it possible for both B and C to define fn()? ...
2
votes
2answers
69 views

Multiple inheritance and pure virtual functions

The following code: struct interface_base { virtual void foo() = 0; }; struct interface : public interface_base { virtual void bar() = 0; }; struct implementation_base : public ...
2
votes
1answer
104 views

Flora-2 diamond inheritance

Flora-2 is an eccentric language and I know this is a long shot but I haven't found any active resources devoted to it so I'm trying here. Its so popular... there is no stackoverflow tag for it. If ...
2
votes
3answers
1k views

How does virtual inheritance solve the diamond problem?

class A { public: void eat(){ cout<<"A";} }; class B: virtual public A { public: void eat(){ cout<<"B";} }; class C: virtual public A { public: void eat(){ ...
1
vote
2answers
216 views

C++ Resolving the diamond problem

Couldn't the diamond problem be resolved just by using the first inherited declaration found? I mean, public class A { public virtual int getInt(); }; public class B : public A { public int ...
1
vote
1answer
134 views

A diamond inheritance problem using a third party library

I seem to have found a case where I should be suffering from the "dreaded" diamond inheritance problem. However, the code appears to work just fine. What I can't seem to figure out for sure is if ...
1
vote
3answers
185 views

How to ensure that the assignment operator on a virtual base class is called only once?

I'm using virtual inheritance as in the typical diamond problem: A (virtual) / \ (virtual) B C \ / D I'm implementing a method named ...
1
vote
2answers
210 views

Diamond sub-problem: non-multiple inheritance in side branch still require class constructor

Strange problem occurred when I tried to "solve" usual diamond problem in a usual way - using virtual inheritance: A / \* both virtual B C \ / D However my base class A doesn't have default ...
1
vote
2answers
643 views

Diamond Problem

Wikipedia on the diamond problem: "... the diamond problem is an ambiguity that arises when two classes B and C inherit from A, and class D inherits from both B and C. If a method in D calls a method ...
1
vote
3answers
480 views

Acceptable to use virtual inheritance to prevent accidentally creating a diamond?

This is a simplification of some real code, and a real mistake I made when I didn't realize someone else had already implemented Foo and derived from it. #include <iostream> struct Base { ...
0
votes
3answers
50 views

Multiple instances of a virtual base class subobject (really) — no way?

Given the code: #include <cassert> struct X {}; struct Y1: virtual X {}; struct Y2: virtual X {}; struct Y3: virtual X {}; struct Y4: virtual X {}; struct Z1: Y1, Y2 {}; struct Z2: Y3, Y4 ...
0
votes
1answer
43 views

C++: Diamond concerns

Simple question: Will this hierarchy cause a DP? //Abstract base class class A { //Implement pure virtual methods with a default definition. //Pure virtual methods are still declared pure ...
0
votes
2answers
98 views

Have a way to simulate diamond problem with Java [closed]

Have a way to simulate the diamond problem with Java ? With interfaces ? Thanks, Celso
0
votes
0answers
43 views

Diamond model and JPA : How can I store or read it?

I would like to know if it's possible to use the cascade mode with JPA to store into database the Diamond model. Diamond model : Up / \ Left Right \ / Down Up contains two lists : ...
0
votes
4answers
222 views

C++ / Diamond inheritance / Static Variables

I am facing some design problems, I would like to write: class A { ... }; class B : public A { static string type_; ... }; class C : public A { static string type_; ... }; class D : public B, public ...
0
votes
4answers
409 views

A diamond-inheritance problem

Just for fun I am working on a XUL implementation for Windows. In XUL, UI elements can be written in XML like this: <window width="800" height="600"></window> I am considering a system ...