Dump class/struct member variables in g++(在 g++ 中转储类/结构成员变量)
问题描述
g++
中是否有用于转储结构/类的成员变量 的标志或工具?为了说明,考虑这样的源代码
Is there a flag in g++
or tools to dump the member variables of a struct/class? To illustrate, consider source code like this
struct A { virtual void m() {}; };
struct B : public A { int b; virtual void n() = 0; };
struct C : public B { int c1, c2; void o(); };
struct D : public C { virtual void n() {}; A d; };
我想得到类似的东西
A: 0 = (vptr)
B: 0 = (vptr)
4 = b
C: 0 = (vptr)
4 = b
8 = c1
12 = c2
D: 0 = (vptr)
4 = b
8 = c1
12 = c2
16 = d
(-fdump-class-hierarchy
不起作用.它只打印成员函数.)
(-fdump-class-hierarchy
does not work. It only prints the member functions.)
(假设我不知道 A
到 D
的类,或者有太多的类我不想自己列出来.)
(Assume I don't know the classes A
to D
, or there are so many classes that I don't want to list them out myself.)
(具体来说,我想转储 http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/iokit/IOKit/IOUserClient.h).
(Specifically, I want to dump the member variables of http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/iokit/IOKit/IOUserClient.h).
推荐答案
为正确的工作使用正确的工具.g++ 并不是一个层次结构查看工具.
Use the right tool for the right job. g++ isn't much of a hierarchy viewing tool.
您总是可以使用像 doxygen 这样的外部工具,它可以转储 graphviz 图.
You can always use a external tool like doxygen, that can dump graphviz diagrams.
对于电源解决方案,有 gcc-xml,可以转储您的整个程序成一个xml文件,你可以随意解析.
For power-solutions there is gcc-xml, that can dump your whole program into an xml file that you can parse at will.
这篇关于在 g++ 中转储类/结构成员变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 g++ 中转储类/结构成员变量
基础教程推荐
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01