473,413 Members | 1,795 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

Multiple Inheritence

This might be slightly off-topic.

Many books on C++ consider multiple inheritence as an "advanced"
concept. Bruce Eckel says in TICPP, volume 2 that "there was (and
still is) a lot of disagreement about whether [multiple inheritence]
is essential in C++".

Are there any disadvantages of using multiple inheritence?

Jan 3 '06 #1
5 2102
Neelesh Bodas wrote:
This might be slightly off-topic.

Many books on C++ consider multiple inheritence as an "advanced"
concept. Bruce Eckel says in TICPP, volume 2 that "there was (and
still is) a lot of disagreement about whether [multiple inheritence]
is essential in C++".

Are there any disadvantages of using multiple inheritence?


Definitely. It forces you to think a bit, like any other part of the
language which you've never used before. It also forces others who are
to read your code to think a bit: class hierarchies can become rather
non-trivial. Of course, qualifying all those things as disadvantages
would be subjective, and it does get outweighed by better design and
abstraction of concepts you can achieve with MI, not that one necessarily
does achieve those goals, but one can.

V
Jan 3 '06 #2
Neelesh Bodas wrote:
This might be slightly off-topic.

Many books on C++ consider multiple inheritence as an "advanced"
concept. Bruce Eckel says in TICPP, volume 2 that "there was (and
still is) a lot of disagreement about whether [multiple inheritence]
is essential in C++".

Are there any disadvantages of using multiple inheritence?


I'm mainly a client of hierarchies based on multiple inheritance
(e.g. I use ATL/WTL) and solutions I use are pretty easy to understand.
But I've never created my own solution based on multiple inheritance.
From my - the architect/developer - side multiple inheritance always
seems as increasing complexity of solution and not very obvious.

So, I'd say multiple inheritance seems to be good tool but only in
hands of very experienced developers.

Cheers
--
Mateusz Łoskot
http://mateusz.loskot.net
Jan 3 '06 #3

Neelesh Bodas wrote:
This might be slightly off-topic.

Many books on C++ consider multiple inheritence as an "advanced"
concept. Bruce Eckel says in TICPP, volume 2 that "there was (and
still is) a lot of disagreement about whether [multiple inheritence]
is essential in C++".

Are there any disadvantages of using multiple inheritence?


Well the disadvantage is the diamond of course and any other clashing.

The advantage is that your class can implement 2 properties and define
from 2 base-classes (preferably abstract ones) that each provide an
interface to one property.

Jan 3 '06 #4
Neelesh Bodas wrote:
This might be slightly off-topic. Many books on C++ consider multiple inheritence as an "advanced"
concept. Bruce Eckel says in TICPP, volume 2 that "there was (and
still is) a lot of disagreement about whether [multiple inheritence]
is essential in C++". Are there any disadvantages of using multiple inheritence?


It may not be essential, but it's pretty useful at times, and is
certainly used in the standard C++ library (iostream for example
combines istream and ostream).

I wouldn't say that there are any real disadvantages other than added
complexity, but it all depends on your application.

Here's a simple example:
#include <iostream>

using namespace std;

class refillable
{
protected:
int max;
int current;
public:
int gauge() { return current; }
bool fill(int amount)
{
if ( amount <= max )
current = amount;
else current = max;
}
bool consume()
{
if ( !current )
return false;
--current;
return true;
}
};

class Battery: public refillable
{
public:
Battery() { max = 100; current = 100; }
bool charge()
{
if ( current < max )
++current;
return true;
}
};

class Fuel: public refillable
{
public:
Fuel() { max = 500; current = 0; }
};

class Lubricant: public refillable
{
public:
Lubricant() { max = 20; current = 20; }
};

class Engine
{
protected:
bool running;
public:
Fuel gas;
Lubricant oil;
Battery battery;
virtual bool start()
{
if ( !gas.gauge() || !oil.gauge() || !battery.gauge() )
return false;
gas.consume();
battery.consume();
return (running = true);
}
virtual bool stop() { running = false; return true; }
virtual bool isRunning() { return running; }
};

class Transmission
{
public:
typedef enum { gReverse = -1, gNeutral = 0, gFirst, gSecond,
gThird, gFourth, gFifth } gear_type;
virtual gear_type inGear() { return in_gear; }
virtual bool changeGear(gear_type gear) { in_gear = gear; return
true; }
Transmission() { in_gear = gNeutral; }
protected:
gear_type in_gear;
};

class Vehicle: virtual public Engine, virtual public Transmission
{
};

int main()
{
Vehicle car;

if ( !car.start() )
{
cout << "Car won't start" << endl;
if ( !car.gas.gauge() )
{
cout << "Adding some gas" << endl;
car.gas.fill(10);
}
if ( !car.oil.gauge() )
{
cout << "Adding some oil" << endl;
car.oil.fill(5);
}
if ( !car.battery.gauge() )
cout << "Battery is dead" << endl;
if ( !car.start() )
{
cout << "Car still won't start" << endl;
return 0;
}
else
cout << "Car starts now" << endl;
}
else
cout << "Car started" << endl;

car.changeGear(Transmission::gFirst);

return 0;
}

Jan 3 '06 #5
Derek wrote:
Neelesh Bodas wrote:
This might be slightly off-topic.

Many books on C++ consider multiple inheritence as an "advanced"
concept. Bruce Eckel says in TICPP, volume 2 that "there was (and
still is) a lot of disagreement about whether [multiple inheritence]
is essential in C++".

Are there any disadvantages of using multiple inheritence?


It may not be essential, but it's pretty useful at times, and is
certainly used in the standard C++ library (iostream for example
combines istream and ostream).

I wouldn't say that there are any real disadvantages other than added
complexity, but it all depends on your application.

Here's a simple example:
#include <iostream>

using namespace std;

class refillable
{
protected:
int max;
int current;
public:
int gauge() { return current; }
bool fill(int amount)
{
if ( amount <= max )
current = amount;
else current = max;
}
bool consume()
{
if ( !current )
return false;
--current;
return true;
}
};

class Battery: public refillable
{
public:
Battery() { max = 100; current = 100; }
bool charge()
{
if ( current < max )
++current;
return true;
}
};

class Fuel: public refillable
{
public:
Fuel() { max = 500; current = 0; }
};

class Lubricant: public refillable
{
public:
Lubricant() { max = 20; current = 20; }
};

class Engine
{
protected:
bool running;
public:
Fuel gas;
Lubricant oil;
Battery battery;
virtual bool start()
{
if ( !gas.gauge() || !oil.gauge() || !battery.gauge() )
return false;
gas.consume();
battery.consume();
return (running = true);
}
virtual bool stop() { running = false; return true; }
virtual bool isRunning() { return running; }
};

class Transmission
{
public:
typedef enum { gReverse = -1, gNeutral = 0, gFirst, gSecond,
gThird, gFourth, gFifth } gear_type;
virtual gear_type inGear() { return in_gear; }
virtual bool changeGear(gear_type gear) { in_gear = gear; return
true; }
Transmission() { in_gear = gNeutral; }
protected:
gear_type in_gear;
};

class Vehicle: virtual public Engine, virtual public Transmission
{
};

[snip]

It's better to use private inheritance here. Better still would be to
use simple composition rather than inheritance.

http://www.parashift.com/c++-faq-lit....html#faq-24.2
http://www.parashift.com/c++-faq-lit....html#faq-24.3

Cheers! --M

Jan 3 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: John | last post by:
Hi, I am trying to create a class heirarchy similar to the following: // base interface class ICar { public: virtual void start() = 0; }; // add members to that interface, but retain base...
2
by: Graham Banks | last post by:
Does using multiple inheritance introduce any more performance overhead than single inheritance?
0
by: agrawal_rajesh | last post by:
Its interesting to know that We can create multiple interfaces in a single class in visiual studio 6.0 ATL. But I am surprised to see that we can't create the same in Visual studio .Net. In .Net...
20
by: km | last post by:
Hi all, In the following code why am i not able to access class A's object attribute - 'a' ? I wishto extent class D with all the attributes of its base classes. how do i do that ? thanks in...
5
by: Tony Johansson | last post by:
Hello Experts! I just play around just to try to understand this about multiple inheritance. You have all the class definition below and at the bottom you have the main program. So here I...
22
by: Matthew Louden | last post by:
I want to know why C# doesnt support multiple inheritance? But why we can inherit multiple interfaces instead? I know this is the rule, but I dont understand why. Can anyone give me some concrete...
5
by: Bob Rundle | last post by:
I heard that managed C++ in VS 2005 supports multiple inheritence. Is this true? Bob Rundle
47
by: Larry Smith | last post by:
I just read a blurb in MSDN under the C++ "ref" keyword which states that: "Under the CLR object model, only public single inheritance is supported". Does this mean that no .NET class can ever...
4
by: Mukesh_Singh_Nick | last post by:
Does PHP support multiple inheritence? If not, how would one workaround it when one needs a class to inherit from multiple classes?
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.