给定一个指针,gdb 如何获取它的类型?

发布于 2024-11-09 11:59:35 字数 69 浏览 0 评论 0原文

gdb 如何知道指针指向 intstruct 或任何其他数据类型?

How does gdb know the pointer points to a int or struct or any other data types?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

故事未完 2024-11-16 11:59:35

来自:检查符号表

什么是表达式

打印表达式expr的数据类型。 expr 并未实际求值,并且其内部不会发生任何副作用操作(例如赋值或函数调用)。请参阅表达式部分。


ptype 表达式

p类型

打印表达式 expr 类型的描述。 ptype 与 Whatis 的不同之处在于打印详细描述,而不仅仅是类型名称。例如,对于这个变量声明:

struct complex {double real; double imag;} v;

两个命令给出以下输出:

(gdb) whatis v
 type = struct complex
(gdb) ptype v
 type = struct complex {
    double real;
    double imag;
 }

from: Examining the Symbol Table

whatis expr

Print the data type of expression expr. expr is not actually evaluated, and any side-effecting operations (such as assignments or function calls) inside it do not take place. See section Expressions.


ptype expr

ptype

Print a description of the type of expression expr. ptype differs from whatis by printing a detailed description, instead of just the name of the type. For example, for this variable declaration:

struct complex {double real; double imag;} v;

the two commands give this output:

(gdb) whatis v
 type = struct complex
(gdb) ptype v
 type = struct complex {
    double real;
    double imag;
 }
对不⑦ 2024-11-16 11:59:35

gdb 无法知道,除非指针来自可以确定其类型的变量或表达式。

如果 gdb 被赋予 0x4567789,它不知道这可能指向什么。但如果 int *p 具有该值,gdb 可以遵循该值并给出该地址包含的内容。

gdb can't know, unless the pointer came from a variable or expression for which the type can be determined.

If gdb is given 0x4567789, it has no idea what that might point to. But if an int *p has that value, gdb can deference that and give you what that address contains.

李不 2024-11-16 11:59:35

当您使用调试选项 (-g) 进行编译时,gdb 通过读取嵌入在可执行文件中的调试信息(也称为符号表)来了解代码中指针变量的类型)。

gdb knows the type of a pointer variable in your code by reading the debugging information (a.k.a. symbol table) that's embedded in your executable when you compile with the debug option (-g).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文