473,809 Members | 2,735 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C++ Multiple Inheritance

Hi,

For the following code snippet, the compiler complains for "mi *mi1=new
mi;" statement

//*************** *************** *************** **********
#include <iostream>
using namespace std;
class base{
public :
virtual void f()=0;
virtual void g()=0;
};

class der1:public base
{
public :
void f()
{
cout << " In Der1"<< endl;
}
};

class der2: public base
{
public:
void g()
{
cout << " In Der2"<< endl;
}
};

class mi : public der1,public der2
{
};

int main(int argc, char* argv[])
{
mi *mi1=new mi;
return 0;
}
//=============== =============== ==========
where as, it does not complain if the the base class is derived
virtually.
Please provide any explaination for this.

Thanks,
Sachin

Feb 7 '06 #1
7 1747
* shintu:

For the following code snippet, the compiler complains for "mi *mi1=new
mi;" statement

//*************** *************** *************** **********
#include <iostream>
using namespace std;
class base{
public :
virtual void f()=0;
virtual void g()=0;
};

class der1:public base
{
public :
void f()
{
cout << " In Der1"<< endl;
}
};

class der2: public base
{
public:
void g()
{
cout << " In Der2"<< endl;
}
};

class mi : public der1,public der2
{
};

int main(int argc, char* argv[])
{
mi *mi1=new mi;
return 0;
}
//=============== =============== ==========
where as, it does not complain if the the base class is derived
virtually.
Please provide any explaination for this.


With ordinary inheritance you're inheriting from two unrelated abstract
classes and since your class does not implement the pure virtual
functions it's still abstract in each of the two subobjects.

With virtual inheritance you have a single base subobject in your most
derived class object, and for that base subobject both pure virtual
functions have been implemented -- it's no longer abstract.

This is, by the way, mostly how inheritance works in Java, and why it's
often a good idea to inherit virtually from interface classes.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Feb 7 '06 #2
Alf P. Steinbach wrote:
* shintu:
For the following code snippet, the compiler complains for "mi *mi1=new
mi;" statement

//*************** *************** *************** **********
#include <iostream>
using namespace std;
class base{
public :
virtual void f()=0;
virtual void g()=0;
};

class der1:public base
{
public :
void f()
{
cout << " In Der1"<< endl;
}
};

class der2: public base
{
public:
void g()
{
cout << " In Der2"<< endl;
}
};

class mi : public der1,public der2
{
};

int main(int argc, char* argv[])
{
mi *mi1=new mi;
return 0;
}
//=============== =============== ==========
where as, it does not complain if the the base class is derived
virtually.
Please provide any explaination for this.


With ordinary inheritance you're inheriting from two unrelated abstract
classes and since your class does not implement the pure virtual
functions it's still abstract in each of the two subobjects.

With virtual inheritance you have a single base subobject in your most
derived class object, and for that base subobject both pure virtual
functions have been implemented -- it's no longer abstract.

This is, by the way, mostly how inheritance works in Java, and why it's
often a good idea to inherit virtually from interface classes.


using virtual inheritance will not be enough. You still have to do an
implementation of f and g in mi. Something like the following is sufficient:

class mi : public der1, public der2
{
public:
void f()
{ der1::f(); }
void g()
{ der2::g(); }
};

Tom
Feb 7 '06 #3
* Thomas Maier-Komor:

using virtual inheritance will not be enough. You still have to do an
implementation of f and g in mi.


I'm sorry, your statement is incorrect.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Feb 7 '06 #4

"Thomas Maier-Komor" <ma******@lpr .e-technik.no-spam.tu-muenchen.de> wrote
in message news:ds******** **@wsc10.lrz-muenchen.de...

using virtual inheritance will not be enough. You still have to do an
implementation of f and g in mi. Something like the following is
sufficient:

class mi : public der1, public der2
{
public:
void f()
{ der1::f(); }
void g()
{ der2::g(); }
};


I don't think that is required.
Am I missing something here?

Regards,
Sumit.
--
Sumit Rajan <su****@msdc.hc ltech.com>
Feb 7 '06 #5
Alf P. Steinbach wrote:
* Thomas Maier-Komor:
using virtual inheritance will not be enough. You still have to do an
implementation of f and g in mi.


I'm sorry, your statement is incorrect.


I thought your statement is correct until I tried it with g++ and Sun's CC.

g++ says:
a.cc: In function `int main(int, char**)':
a.cc:41: error: cannot allocate an object of type `mi'
a.cc:41: error: because the following virtual functions are abstract:
a.cc:5: error: virtual void base::f()
a.cc:6: error: virtual void base::g()

Sun's CC says:
"a.cc", line 35: Error: Cannot create a variable for abstract class mi.
"a.cc", line 35: Error: base::g() has not been overridden.
"a.cc", line 35: Error: base::f() has not been overridden.

Either both compilers are wrong, these functions are needed, or I do
misunderstand something completely. Could you please point me into the
right direction so I am able to understand this issue?

Tom
Feb 7 '06 #6
* Thomas Maier-Komor:
Alf P. Steinbach wrote:
* Thomas Maier-Komor:
using virtual inheritance will not be enough. You still have to do an
implementation of f and g in mi.
I'm sorry, your statement is incorrect.


I thought your statement is correct until I tried it with g++ and Sun's CC.

[snip]
Either both compilers are wrong, these functions are needed, or I do
misunderstand something completely. Could you please point me into the
right direction so I am able to understand this issue?


#include <string>
#include <iostream>
#include <ostream>

using namespace std;

class base{
public :
virtual void f()=0;
virtual void g()=0;
};

class der1:public virtual base
{
public :
void f()
{
cout << " In Der1"<< endl;
}
};

class der2: public virtual base
{
public:
void g()
{
cout << " In Der2"<< endl;
}
};

class mi : public der1,public der2
{
};

int main(int argc, char* argv[])
{
mi *mi1=new mi;
mi1->f();
mi1->g();
return 0;
}

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Feb 7 '06 #7
Thank you gentlemen for your wise thoughts and time. I run it, before
posting, on VC++(6.0) copiler and found that with virtual derivation
there was no error, whatsoever.

Feb 7 '06 #8

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

Similar topics

2
4340
by: Graham Banks | last post by:
Does using multiple inheritance introduce any more performance overhead than single inheritance?
5
2185
by: Morgan Cheng | last post by:
It seems no pattern defined by GoF takes advantage of multiple inheritance. I am wondering if there is a situation where multiple inheritance is a necessary solution. When coding in C++, should multiple inheritance still be avoided? If yes, why multiple inheritance is introducted into C++?
20
10090
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 advance for enlightment ... here's the snippet #!/usr/bin/python
22
23391
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 examples?
47
3658
by: Mark | last post by:
why doesn't .NET support multiple inheritance? I think it's so silly! Cheers, Mark
60
4952
by: Shawnk | last post by:
Some Sr. colleges and I have had an on going discussion relative to when and if C# will ever support 'true' multiple inheritance. Relevant to this, I wanted to query the C# community (the 'target' programming community herein) to get some community input and verify (or not) the following two statements. Few programmers (3 to7%) UNDERSTAND 'Strategic Functional Migration
15
28380
by: iKiLL | last post by:
hi all, I would like to be able to create an umbrella class for all my main global sections but I would still like to keep them all in separate file something like the below but I keep getting an error saying you are not allowed Multiple base classes. /// <summary>
7
3743
by: Adam Nielsen | last post by:
Hi everyone, I'm having some trouble getting the correct chain of constructors to be called when creating an object at the bottom of a hierarchy. Have a look at the code below - the inheritance goes like this: Shape | +-- Ellipse | +-- Circle
47
4047
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 support multiple inheritance. In C++ for instance I noticed that the compiler flags an error if you use the "ref" keyword on a class with multiple base classes. This supports the above quote. However, under the "CodeClass2.Bases" property (part...
2
2592
by: Paul McGuire | last post by:
On May 25, 8:37 am, Michael Hines <michael.hi...@yale.eduwrote: Here's a more general version of your testing code, to detect *any* diamond multiple inheritance (using your sample classes). -- Paul for cls in (A,B,C,D): seen = set()
0
9721
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9602
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10639
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10376
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10383
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9200
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 project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6881
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4332
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3861
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.