Re: Managed C++
Tech-Archive recommends: Fix windows errors by optimizing your registry
"Nemanja Trifunovic" <ntrifunovic@xxxxxxxxxxx> wrote in message
news:1114615660.660921.261340@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
> Managed code in C++ actually has always allowed multiple
> inheritance,
> but not for __gc classes. You can still do this with MC++:
>
> class A {};
> class B {};
>
> struct C: A, B
> {};
Sorry, what are "__gc classes" ?
Dave
--
David Webber
Author MOZART the music processor for Windows -
http://www.mozart.co.uk
For discussion/support see
http://www.mozart.co.uk/mzusers/mailinglist.htm
.
Relevant Pages
- Re: Function object
... struct, allowing multiple return values. ... It illustrates currying, tuples, and providing multiple return ... > to evade writing macros for altering the sources. ... > comparing types, overloaded cast-operators and inheritance. ... (comp.object) - Re: TDTTOE: Pet grid bug!
... it's an implementation of inheritance. ... ...and polymorphism is acheived by static type casting. ... actually you don't need any casting if you work with polymorphism. ... struct base * it may point to a struct derived1 or a struct derived2 or ... (rec.games.roguelike.nethack) - Re: Inheritance
... What I would like to do is start a league with variables describing the ... Then I would like to start multiple divisions that would be using the time ... What I read about inheritance is that it build on ... but you would not do this to an array item. ... (microsoft.public.vc.mfc) - Re: structure address = structure first field address ?
... implement a struct with char followed by int, ... The structure must be aligned and padding inserted as needed ... Actually Kenny McCormack is 100% right. ... system where int must be aligned on a multiple of 4 and long on a ... (comp.lang.c) - Re: Struct / Class Performance?
... > I have gathered time data for global variables, struct, and class. ... > inheritance, derived class must obtain a pointer from base class before it ... There is a big difference between inheritance and virtual functions. ... (comp.lang.asm.x86) |
|