如何在 gdb 中打印出实际对象值而不是内存地址?

How to print out actual object value instead of memory address in gdb?

(gdb) print inputInfo
 = (SObjectRecInput *) 0x7fffffffced0

比如我想查看inputInfo的值时,打印出:

0x7fffffffced0

它的类型是'SObjectRecInput'。

如何实际打印出它的值?

inputInfo 似乎有指针类型,因此取消引用它:

(gdb) print *inputInfo