本文介绍了空类的大小是多少?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



c ++中空类的大小是多少,如果该类只包含一个VTABLE那么大小是多少?





请解释一下?



问候,

Ranjith

Hi ,
what is the size of empty class in c++ and if the class contain only one VTABLE then what is the size?


Please explain?

Regards,
Ranjith

推荐答案

int main()
{
    class empty {};
    printf ("Size of empty is %d", sizeof(empty));
    return 0;
}



关于VTable,虚拟析构函数和类似版本 - 谷歌是你的朋友。



希望这有帮助,

Pablo。


About VTable, virtual destructors and similar - google is your friend.

Hope this helps,
Pablo.




这篇关于空类的大小是多少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 21:11