473,386 Members | 2,129 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,386 software developers and data experts.

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 1727
* 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.hcltech.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
by: Graham Banks | last post by:
Does using multiple inheritance introduce any more performance overhead than single inheritance?
5
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...
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...
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...
47
by: Mark | last post by:
why doesn't .NET support multiple inheritance? I think it's so silly! Cheers, Mark
60
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...
15
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...
7
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...
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...
2
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). --...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.