 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
FPYL Guest
|
Posted: Tue Jun 07, 2005 10:53 pm Post subject: Multiple Inheritance Scenarios |
|
|
Hi there,
I just wonder whether someone can help me with the in following scenarios
regarding there different meanings in implementation:
class A
class B: virtual A
class C: virtual A, B
class D: B, C
and
class A
class B: virtual A
class C: A, B
class D: B, C
Thanks in advance.
Frank
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
ta0kira@yahoo.com Guest
|
Posted: Mon Jun 13, 2005 4:10 pm Post subject: Re: Multiple Inheritance Scenarios |
|
|
In the 1st scenario, D will have 2 copies of B, but only one copy of A.
In the 2nd, D will have 2 copies of both; virtual will only combine
other virtuals.
ta0kira
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|