Size of virtual pointer-C++

前端 未结 6 732
迷失自我
迷失自我 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:15

    Probably the same size as a normal pointer... generally 4 bytes on 32-bit machines. But this would be compiler-dependent, some compilers may do things differently.

提交回复
热议问题