How does virtual method invocation work in C++?

对着背影说爱祢 提交于 2019-11-26 11:35:55

问题


How does Virtual Method Invocation work in C++?


回答1:


Through virtual tables.

Read this article, http://en.wikipedia.org/wiki/Virtual_table.

I could explain it here, but the wikipedia does a better job than I could.




回答2:


The C++ standard doesn't specify how the virtual function mechanism should be implemented.

That said, I think all current C++ compilers use virtual tables.
The common way to do this for classes which contain at least one virtual function to have a hidden pointer to a so-called virtual table, where the addresses of the virtual functions for a specific class are entered in compiler-specific order.
Each constructor will then set this hidden pointer to the virtual table of the class it belongs to.




回答3:


Every class with at least one virtual method has it's virtual table - table of pointers to functions that are that class's methods.

It's extensively used in COM.




回答4:


With VTables and function pointers. Virtual functions' function pointer will be listed in VTable
MFC is using Message Map instead of Virtual function, which reduces the size limitation. If we use several virtual function VTable will end up with big size.



来源:https://stackoverflow.com/questions/3804079/how-does-virtual-method-invocation-work-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!