是否有工具可以从源代码中的给定结构或类中提取成员变量?我期待的是以下
假设 target.c 如下:
#include <stdio.h>
struct A {
int a;
int b;
};
int main()
{
blah...
}
而且,如果我在 bash 中做类似的事情:
$ extract-member target.c A
struct A member list:
- int a;
- int b;
有没有像“提取成员”这样的工具?