Size of virtual pointer-C++

前端 未结 6 737
迷失自我
迷失自我 2020-12-19 12:51

What is the size of virtual pointer(VPTR) for a virtual table in C++? Also this is not a homework question...just a question that came to my mind while I was reading a C++ b

6条回答
  •  青春惊慌失措
    2020-12-19 13:23

    An excellent article related to this topic is Member Function Pointers and the Fastest Possible C++ Delegates. This article delves deeply into the implementation of member function pointers for many different compilers. This article talks about all the nuances of vtable pointers particularly in light of multiple (and virtual) inheritance.

提交回复
热议问题