¡@

Home 

c++ Programming Glossary: myafn

What's the difference between a derived object and a base object in c++?

http://stackoverflow.com/questions/1697020/whats-the-difference-between-a-derived-object-and-a-base-object-in-c

make it more obvious let's say A declares another function MyAFn which is virtual which B does not over ride re implement. So.. So the code would be class A public virtual void MyAFn return 17 virtual void MyFn return 42 class B public A public.. virtual void MyFn return 13 then B will have the functions MyAFn and MyFn in its interface and the vtables will now look like..