2
votes
8answers
339 views
Alternative of Multiple inheritance in Java
I have created two beans
class BackPageBean{
String backPage = null;
:
:
:
}
class InformationMessageBean{
String informationMessage = null;
:
:
:
}
Now, if …
0
votes
1answer
48 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 impl …
0
votes
1answer
14 views
What’s the difference between COM_INTERFACE_ENTRY_IID and COM_INTERFACE_ENTRY2_IID?
Seems like both COM_INTERFACE_ENTRY_IID and COM_INTERFACE_ENTRY2_IID are for the case when the class is derived from two or more classes each derived from a common interface. Like …
3
votes
4answers
121 views
Why is this the same even when object pointers differ in multiple inheritance?
When using multiple inheritance C++ has to maintain several vtables which leads to having "several views" of common base classes.
Here's a code snippet:
#include "stdafx.h"
#incl …
21
votes
34answers
2k 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 comp …
12
votes
9answers
2k 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 i …
2
votes
4answers
105 views
C++ Separate Compilers for classes (vtables)?
I was wondering what the consequences are for compiling a class A with one compiler that doesn't allow multiple inheritance, and compiling a class B that does support it (and class …
3
votes
3answers
50 views
Is there a BDD-style framework that allows multiple inherited behaviours?
Many of our system tests are written in a BDD style, and we make decent use of inherited behaviours to minimise duplication, for example this might be a basic hierarchy for purchas …
0
votes
1answer
56 views
Emulate multiple inheritance in php
I have a system of Models:
abstract class R00_Model_iUnique { }
abstract class R00_Model_iFamilyUnique extends R00_Model_iUnique { } // for models with hierarchy
abstract class R0 …
0
votes
2answers
54 views
Database Structure to store multiple inheritance classes
I have two distinct (no inheritance) interfaces:
IInvestable and IPricable
and two classes:
IndexClass and FundClass
that are stored in seperate tables in my DB.
IndexClass is I …
2
votes
2answers
163 views
Custom Exceptions in C++
Hi,
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 de …
1
vote
4answers
130 views
derive from an arbitrary number of classes
I have a class whose functionality I'd like to depend on a set of plug-in policies. But, I'm not sure how to get a class to derive from an arbitrary number of classes.
The code …
0
votes
4answers
126 views
C++ Abstract base class array of ptrs to ptrs
I have an abstract base class (Comparable) with Date and Time virtually inheriting from it and a DateTime class v-inheriting from Date and Time.
My problem is this:
I was tasked w …
0
votes
1answer
73 views
Accessing a member/method of a virtual derived class
The example here doesn't make sense, but this is basically how I wrote my program in Python, and I'm now rewriting it in C++. I'm still trying to grasp multiple inheritance in C++, …
5
votes
6answers
272 views
Multiple inheritance dilemma in C++
Hi all,
I'm facing problems with the design of a C++ library of mine. It is a library for reading streams that support a feature I haven't found on other "stream" implementations. …
