Tagged Questions
A feature of some object-oriented computer programming languages in which a class can inherit behaviors and features from more than one superclass or base class.
40
votes
36answers
5k views
Should C# include multiple inheritance?
I have come across numerous arguments against the inclusion of multiple inheritance in C#, some of which include (philosophical arguments aside):
Multiple inheritance is too complicated and often ...
29
votes
3answers
3k views
How does Python's super() work with multiple inheritance?
I'm pretty much new in Python object oriented programming and I have trouble
understanding the super() function (new style classes) especially when it comes to multiple inheritance.
For example if ...
26
votes
4answers
14k views
How does Python's “super” do the right thing?
I'm running Python 2.5, so this question may not apply to Python 3. When you make a diamond class hierarchy using multiple inheritance and create an object of the derived-most class, Python does the ...
26
votes
11answers
21k views
Multiple Inheritance in C#
Since multiple inheritance is bad (it makes the source more complicated) C# does not provide such a pattern directly. But sometimes it would be helpful to have this ability.
For instance I'm able to ...
23
votes
4answers
2k views
How to make a Java class that implements one interface with two generic types?
I have a generic interface
public interface Consumer<E> {
public void consume(E e);
}
I have a class that consumes two types of objects, so I would like to do something like:
public ...
22
votes
5answers
1k views
What are some good alternatives to multiple-inheritance in .NET?
I've run into a bit of a problem with my class hierarchy, in a WPF application. It's one of those issues where you have two inheritance trees merging together, and you can't find any logical way to ...
21
votes
9answers
6k views
Why is Multiple Inheritance not allowed in Java or C#?
I know that multiple inheritance is not allowed in Java and C#. Many books just say, multiple inheritance is not allowed. But it can be implemented by using interfaces. Nothing is discussed about why ...
20
votes
9answers
7k views
What is the exact problem with multiple inheritance?
I can see people asking all the time whether multiple inheritance should be included into the next version of C# or Java. C++ folks, who are fortunate enough to have this ability, say that this is ...
19
votes
13answers
6k views
Why should I avoid multiple inheritance in C++?
Is it a good concept to use or I can do other things in place of this?
15
votes
2answers
2k views
Mixins vs. Traits
What is the difference between Mixins and Traits?
According to Wikipedia, Ruby Modules are sort of like traits. How so?
14
votes
1answer
404 views
Triple inheritance causes metaclass conflict… Sometimes
Looks like I stumbled upon a metaclass hell even when I didn't wanted anything to do with it.
I'm writing an app in Qt4 using PySide. I want to separate event-driven part from UI definition, which is ...
14
votes
3answers
3k views
Method name collision in interface implementation - Java
If I have two interfaces , both quite different in their purposes , but with same method signature , how do I make a class implement both without being forced to write a single method that serves for ...
14
votes
7answers
2k views
How is C++'s multiple inheritance implemented?
Single inheritance is easy to implement. For example, in C, the inheritance can be simulated as:
struct Base { int a; }
struct Descendant { Base parent; int b; }
But with multiple inheritance, the ...
12
votes
2answers
175 views
Ambiguous injected class name is not an error
What I read in the C++ standard about injected class names contradicts (as I see it) with the behavior of a sample program I will present shortly. Here's what I read:
From 3.4 (paragraph 3)
The ...
12
votes
3answers
3k views
Question on multiple inheritance, virtual base classes, and object size in C++
The following code prints 20, i.e. sizeof(z) is 20.
#include <iostream.h>
class Base
{
public:
int a;
};
class X:virtual public Base
{
public:
int x;
};
...
11
votes
3answers
179 views
About multiple inheritance and defining virtual function
I have a multiple inheritance scenario without virtual base classes like this:
Ta Tb
| |
B C
\ /
A
Ta and Tb are two different template classes that both declare a virtual function ...
10
votes
2answers
151 views
Why can't GCC disambiguate multiple inherited functions (yet clang can)? [closed]
Possible Duplicate:
Why do multiple-inherited functions with same name but different signatures not get treated as overloaded functions?
This fails to compile in the indicated place with ...
10
votes
5answers
287 views
Multiple Inheritance, C++ and having Two Super Classes Providing the same method signature
I have no experience in C++, and I come from a Java background. Lately, I was asked in an interview on why Java would not allow multiple inheritence and the answer was pretty easy. However, I am still ...
10
votes
3answers
305 views
Virtual inheritance in C++
I found this in a website while reading about virtual inheritance in c++
When multiple inheritance is used, it is sometimes necessary to use virtual inheritance. A good example for this is the ...
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
2answers
208 views
C# : Transitive Inheritance
Is Inheritance a transitive relation in C#?
I am asking because I cannot understand why IList<T> implements ICollection<T> and IEnumerable<T> as ICollection<T> already ...
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 ...
10
votes
2answers
438 views
When is (this != this) in C++?
I have a very strange question.
I have a class/function :
class MCBSystem {
[...]
template <class Receiver>
void setCallBack(int i, Receiver* receiver, ...
10
votes
6answers
2k views
What are real-world examples of C++ multiple inheritance?
Besides textbook examples -- in the real world -- does it ever make sense to use multiple inheritance (where more than one of the base classes are not pure interfaces) in C++?
10
votes
10answers
745 views
When might multiple inheritance be the only reasonable solution?
To be clear, I'm not asking if/why multiple inheritance is good or bad. I've heard a lot of arguments from both sides of that debate.
I'm wondering if there is any kind of design problem or scenario ...
10
votes
12answers
1k views
A use for multiple inheritance?
Can anyone think of any situation to use multiple inheritance? Every case I can think of can be solved by the method operator
AnotherClass() { return this->something.anotherClass; }
9
votes
7answers
366 views
Are interfaces redundant with multiple inheritance?
This is not yet another question about the difference between abstract classes and interfaces, so please think twice before voting to close it.
I am aware that interfaces are essential in those OOP ...
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 ...
9
votes
8answers
378 views
Eliminating multiple inheritance
I have the following problem and I'm wondering if there's a nice way to model these objects without using multiple inheritance. If it makes any difference, I am using Python.
Students need contact ...
9
votes
4answers
1k views
Discussion of multiple inheritance vs Composition for a project (+other things)
I am writing a python platform for the simulation of distributed sensor swarms. The idea being that the end user can write a custom Node consisting of the SensorNode behaviour (communication, logging, ...
8
votes
2answers
136 views
Where should I put the empty base class?
Does the order in which I list the base classes matter when one of them is empty and the other one is not?
class Foo : normal_class, empty_class { ... };
class Foo : empty_class, normal_class { ... ...
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
2answers
126 views
Multiple (diamond) inheritance compiles without “virtual”, but doesn't with
Given the following code (without virtual inheritance) :
class A
{
public:
virtual void f() = 0;
};
class B : public A
{
public:
virtual void f() {}
};
class C : public A
{
public:
...
8
votes
6answers
156 views
covariant return types with multiple inheritance. how does this code work?
Can anyone tell me how does return type covariance work in the following code?
class X
{
public:
int x;
};
class Y: public OtherClass, public X
{
};
static Y inst;
class A {
public:
...
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
2answers
496 views
Why do multiple-inherited functions with same name but different signatures not get treated as overloaded functions?
The following snippet produces an "ambigious call to foo" error during compilation, and I'd like to know if there is any way around this problem without fully qualifying the call to foo:
#include ...
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 ...
8
votes
2answers
3k views
Custom Exceptions in C++
I've been trying to make some custom exception classes for a C++ library I'm working on. These custom exceptions capture extra info, such as file,line number,etc, needed for debugging, if for some ...
8
votes
2answers
770 views
Binding IList<IMyInterfaceType> doesn't display members of Interfaces that IMyInterface inherits
I'm binding IList to a GridView. IMyInterface looks like
public interface IMyInterface: IHasTotalHours, IHasLines
{
DateTime GoalStartDate { get; set; }
DateTime GoalEndDate { get; set; }
}
...
7
votes
6answers
169 views
Implementing interfaces in C++
I usually program in C# but am trying to do a bit of C++ and am struggling somewhat trying to implement interfaces in C++.
In C# I'd do something like this:
class Base<T>
{
public void ...
7
votes
2answers
229 views
C++ multiple inheritance function call ambiguity
I have a basic question related to multiple inheritance in C++. If I have a code as shown below, it gives the following compilation error.
struct base1 {
void start() { cout << "Inside ...
7
votes
2answers
482 views
Are Mixin class __init__ functions not automatically called in python?
I'd like to use a Mixin to always add some init functionality to my child classes which each inherit from different API base classes. Specifically, I'd like to make multiple different child classes ...
7
votes
3answers
207 views
OOP the point of interface [closed]
Possible Duplicate:
Interface vs Abstract Class (general OO)
EDIT:
I just read the questions and answers to the questions from "possible duplicate" and I feel really sad that someone ...
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
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 ...
7
votes
7answers
374 views
Why make Abstract classes and Interfaces?
Well I was going to ask what the difference is but it's been answered before. But now I'm asking why did they make these differences? (I'm speaking about java here, I don't know if the same applies to ...
7
votes
11answers
185 views
Creating an object that has all the properties of two other objects?
Consider a sports club situation.
A club can have a Club manager and 1 or more Coaches (1 coach per team)
So, here is an example of the Manager and Coach classes.
Class ClubManager
{
public void ...
7
votes
6answers
335 views
Multiple inheritance design issue in Java
How do you deal with having only single inheritance in java? Here is my specific problem:
I have three (simplified) classes:
public abstract class AbstractWord{
String kind; // eg noun, ...
7
votes
5answers
660 views
Inherit interfaces which share a method name
There are two base classes have same function name. I want to inherit both of them, and over ride each method differently. How can I do that with separate declaration and definition (instead of ...
7
votes
3answers
862 views
Why exactly do I need an explicit upcast when implementing QueryInterface() in an object with multiple interfaces()
Assume I have a class implementing two or more COM interfaces:
class CMyClass : public IInterface1, public IInterface2 {
};
Almost every document I saw suggests that when I implement ...