gpt4 book ai didi

c++ - 为什么 gdb 无法打印数组元素?

转载 作者:行者123 更新时间:2023-11-30 03:38:47 25 4
gpt4 key购买 nike

我希望使用 gdb 打印已分配内存的所有数组元素。

int main() {
int* p=(int*)malloc(7*sizeof(int));
for(size_t j=0;j<7;++j) {
p[j]=j;
}
return 0;
}

所以我用-g3编译这个程序,用gdb启动它,设置break

> print p@7 

我预计 with 会打印出 1-7,但实际输出是

$1 = {0x6160b0, 0x5, 0xff00000000, 0x615c60, 0x615c80, 0x615c20, 0x615c40} 

为什么我的期望!=实际结果,我的程序有什么问题吗?

最佳答案

GDB Manual说:

The left operand of `@' should be the first element of the desired array and be an individual object. The right operand should be the desired length of the array. The result is an array value whose elements are all of the type of the left argument

如果你说

 print p@7 

您告诉 GDB 打印一个包含 7 个指针的数组。

你需要的是:

print *p@7 

关于c++ - 为什么 gdb 无法打印数组元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39286010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com