派生类、具体类的 vtable

发布于 2024-07-30 02:57:13 字数 63 浏览 5 评论 0原文

如果我有一个基类,并从中派生出 10 个不同的具体派生类,那么每个具体派生类是否都会有一个不同的 vtable?

If I have one base class and I derive 10 different concrete derived classes from it then will each and every concrete derived class have a different vtable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

木森分化 2024-08-06 02:57:13

取决于您的派生类是否重写/声明任何虚拟方法。

Depends on whether your derived classes override/declare any virtual methods.

夜司空 2024-08-06 02:57:13

如果基类或所有派生类都有任何虚函数,那么通常是的。 它为什么如此重要?

如果两个类具有相同的虚拟函数集,则它们只能共享 vtable。
因此,如果派生类不重写任何虚函数,则它只能与基类共享 vtable。

派生类不能与任何其他派生类共享 vtable,除非它们都不会重写同一基类的任何函数,因为即使以相同的方式实现,一个派生类的成员函数与不同派生类的成员函数。

If the base class or all of the derived classes have any virtual functions, then yes, usually. Why is it important?

Two classes can only share a vtable if they have an indentical set of virtual functions.
So a derived class can only share a vtable with a base class if it doesn't override any virtual functions.

A derived class can't share a vtable with any other derived class unless they both don't override any functions of the same base class as - even if implemented in the same way - the member functions of one derived class are a different type from the member functions of a different derived class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文