是否有任何 g++ 选项可以转储类布局和 vtables?

2022-01-23 00:00:00 g++ c++

我想看看 g++ 如何为类和虚拟表分配内存.

I want to see how g++ lays out memory for classes and virtual tables.

有没有办法转储这些信息,使用 g++ 的选项?

Is there a way to dump this information, using g++'s options?

推荐答案

g++ -fdump-class-hierarchy -c source_file.cpp

g++ -fdump-class-hierarchy -c source_file.cpp

相关文章