- Does virtual inheritance use vTable? If yes or no, Then how it implemented
- How Virtual inheritance behave in memory?
- Any other alternative for virtual inheritance
Really appreciate a conceptual explanation.
Really appreciate a conceptual explanation. |
|||||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Virtual inheritance is implemented in different way depending on the compiler. 1) Yes, both vc and gcc use vTable pointer. But vc has another pointer ref as virtual base pointer. 2) For a classical virtual inheritance, like Left < Top; Right < Top; Bottom < Left and Right The stack should be like this:
Programs use vptr to find vtable, for gcc, there is a virtual base offset value in viable. vptr + base offset will give the parent address. 3) I'm not sure what do you mean. There are different ways to implement it in C++ compilers. And other languages have their ways to bind functions. |
|||||
|