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

0
votes
1answer
65 views

avoiding diamond in multiple inheritance [closed]

i have to implement data structures that support abstract Numbers Collection is a collection of numbers sorted is a sorted collection list is a list collection of numbers (include duplicates) set ...
11
votes
6answers
373 views

How to implement interfaces with homographic methods in Java?

In English, a homograph pair is two words that have the same spelling but different meanings. In software engineering, a pair of homographic methods is two methods with the same name but different ...
0
votes
1answer
103 views

Avoiding a diamond inheritance [duplicate]

I have a class A. classes B and C are interfaces that derives from class A. A / \ B C now I have to implement the classes D and E for both B and C. and then there are some ...
0
votes
1answer
61 views

Range of a Rhombus

I want to make a function to check if a point is in range of a rhombus or not , Bool Conditional::InRange(Point P) { if( (P.x > Position.x-100) && (P.x < Position.x+100) && ...
1
vote
1answer
39 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; ...
0
votes
2answers
70 views

Virtual Base Class in C++

I have a query regarding the virtual base class. In order to resolve the DDD /ambuiguity problem in multiple inheritance, virtual base class is introduced. class A { public: void Foo() {} } class B : ...
3
votes
4answers
249 views

Triads not showing up to fight? (Java Set missing an item)

I have code from two companies asoft and bsoft. I cannot change either. This is a simplified version of my situation which I'm pretty sure has enough information to the find what's causing the ...
0
votes
2answers
53 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 = ...
0
votes
0answers
153 views

Resolve ambiguity resulting from multiple inheritance of classes which share a common template class

I am trying to create a base class which is a template class and accepts, as a templace, some class. This base class in the parent class of two other classes which are themselves the parents of the ...
1
vote
1answer
33 views

C++ heap error _CrtlsValidHeapPointer(pUserData)

After I compile with MSVC, my program triggers an assertion failure at runtime: _CrtlsValidHeapPointer(pUserData) , but the code looks ok to me... class A { int a; public: A(); A(int); ...
2
votes
1answer
78 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 ...
1
vote
1answer
170 views

Scala and diamond inheritance when using traits

Given traits: trait HasSize { def size() : Int } trait StorageTrait extends HasSize { def something() : Unit } trait YetAnotherStorageTrait extends HasSize { def anotherSomething() : Unit } ...
8
votes
3answers
85 views

References to the same base classes must have separate offsets in memory

I've discovered some inconsistencies between compilers with this program, struct A { }; struct B : public A { float m; }; struct C : public A { B b; float n; }; struct D : public A { ...
0
votes
2answers
114 views

Trouble with multiple inheritance. How to call base function?

I'm learning C++ and in a school assignment I must use a diamond structure even if it is not totally correct. class Book { public: virtual int getPurchasePrice() const; protected: ...
1
vote
2answers
2k views

g++ “because the following virtual functions are pure” with abstract base class

Here is my example code which produces the error: struct Impl { int data_size_; int find(int var){return 0;} int get(int rowid){return 0;} }; class Container { public: Container() {} ...
1
vote
1answer
158 views

Diamond Inheritance Lowest Base Class Constructor

The Code is as follow : The Code : #include <iostream> using namespace std; class Animal{ int a; public: Animal(int a) : a(a){} int geta(){return a;} }; class Bird : virtual ...
0
votes
1answer
252 views

python multiple inheritance: avoid calling the constructors twice in diamond shape

Consider the following code: class A(object): def __init__(self): print("A.__init__") super(A, self).__init__() # 1 print("A.__init__ finished") class B(A): ...
2
votes
2answers
220 views

What is proper approach to swap and copy idiom in virtual inheritance

Consider classic virtual inheritance diamond hierarchy. I wonder to know what is the right implementation of copy and swap idiom in such hierarchy. The example is a little artificial - and it is not ...
0
votes
4answers
171 views

How interfaces solve the diamond-prob

I need to discuss one thing with you. I have been reading about the interface that it is a contract between the class the interface that the class will provide implementation of all the methods of the ...
3
votes
1answer
87 views

One-Many-One Inheritance in Python

A question about whether or not I'm going about something in the best way... I would like to have a class hierarchy in Python that looks (minimally) like the following; class Actor class ...
0
votes
3answers
116 views

Polymorphism object creation - diamond inheritance hierarchy

Language : C/C++ Problem : Taking the common example, where A is the parent class. B and C both inherited from class A. D is inherited from both B and C and we want to access A's function through ...
3
votes
1answer
193 views

Got diamond inheritance working, but Eclipse still complains

thanks for looking. I'm going through the software patterns in c++ to become familiar with it, and am having a problem with interface-based programming - namely the diamond problem. Here's the ...
6
votes
2answers
172 views

The process of creating a class that involves virtual inheritance

In many tutorials describing the usage of virtual base classes (usually used to solve the diamond problem), they often have a code similar to the design of this structure: class Animal { public: ...
0
votes
3answers
106 views

Preventing redundant function calls in the presence of diamond inheritance

What's a good strategy for preventing redundant function calls in the presence of diamond inheritance? Specifically, say we have a program: #include <iostream> struct A { int a; A(int ...
1
vote
1answer
110 views

Pointer to inherited data member in multiple inheritance

I'm trying to see if there was a way to get a pointer to a data member from a class which has multiple inheritance. Is there a way to disambiguate them and still get the correct offsets? struct Foo { ...
1
vote
4answers
558 views

C++ multiple inheritance

Please don't question the really odd hierarchy of workers in this code here, I have no idea why anyone would want something like this, but I decided to give myself an exercise in Multiple Inheritance, ...
2
votes
2answers
121 views

diamond inheritance of classes with same members in python and with super

I find myself in the strange situation of diamond inheritance, even worse is that the classes in the middle of the diamond share a member. Below I've shown a cut down piece of code which highlights my ...
1
vote
1answer
376 views

diamond shaped multiple inheritance pattern

Below is a diamond problem faced in multiple inheritance, class Base { public: Base() { cout << "Empty Base constructor " << endl; } Base(const string & strVar) { ...
8
votes
5answers
2k 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. ...
1
vote
4answers
149 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 ...
3
votes
1answer
156 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 ...
0
votes
1answer
85 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 ...
4
votes
3answers
1k 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 ...
8
votes
4answers
678 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;}; }; ...
9
votes
3answers
505 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 ...
15
votes
1answer
2k 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 ...
0
votes
2answers
431 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
1
vote
2answers
895 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 ...
5
votes
3answers
280 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; ...
21
votes
2answers
701 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 = ...
8
votes
7answers
464 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 ...
6
votes
2answers
618 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() = ...
0
votes
0answers
81 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 : ...
2
votes
1answer
178 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 ...
4
votes
4answers
621 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 ...
11
votes
2answers
349 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: ...
1
vote
1answer
200 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 ...
0
votes
4answers
395 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 ...
4
votes
6answers
1k 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 ...
1
vote
3answers
295 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 2