0
我有我的結構與幾個成員,我希望看到他們都按順序編入索引。GDB命令索引結構的成員
Struct Ant
{
int type;
char name[100];
long long int food;
}
現在,當我在gdb執行命令
(gdb) ptype struct Ant
$1 = struct
{
int type;
char name[100];
long long int food;
}
我想看到的輸出類似
{
0, int type;
1, char name[100];
2, long long int food;
}
有沒有辦法讓每個結構的指標GDB中的字段?
索引有什麼意義?你會如何使用它們? – Barmar
這與Python有什麼關係? – martineau
我想將索引結構輸出到C文件並使用索引信息遍歷結構。 – vip