C++ 多态类中的 vtable使用 gdb
如何使用指向具有虚函数的基类对象的指针来显示 vtable?
How to display vtable using a pointer to base class object having virtual functions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过
设置打印对象
?Did you try
set print object on
?如果您有足够新的 gdb 版本,您可能需要查看“info vtbl”命令(或者它可能被称为“info vtable”;我自己的 gdb 版本不够新,因此我无法测试该功能我自己出来了)。
我只是在谷歌搜索这个问题的答案时才注意到这个功能,并且我注意到 2012 年左右的 gdb 邮件列表中的帖子,特别是 2012 年 3 月的这个帖子:
http://permalink.gmane.org/gmane.comp.gdb.patches/73957
If you have a sufficiently new version of gdb, you may want to look at the "info vtbl" command (or perhaps it is called "info vtable"; my own version of gdb is not sufficiently new, and so I cannot test the feature out myself).
I only noticed the feature when googling for an answer to this question and I noticed posts to the gdb mailing list circa 2012, notably this one from March 2012:
http://permalink.gmane.org/gmane.comp.gdb.patches/73957