B
Bob Rundle
I heard that managed C++ in VS 2005 supports multiple inheritence. Is this
true?
Bob Rundle
true?
Bob Rundle
Bob said:I heard that managed C++ in VS 2005 supports multiple inheritence.
Is this true?
(.NET) classes, since this isn't supported by the CLR
kkhosla said:We can have multiple inheritance with the help of interfaces though.
Think of interfaces as classes which in which you can only have
declrations of the functions and "no" implementations. All functions
in the class are thus abstract and you must override them.
inheritance. You can't have multiple implementation inheritance in .NET,
although that's been a standard C++ feature for 10+ years.
-cd
Adelle said:Does that mean we can expect ATL-style template code for .NET?