How to view the internal data of a smart pointer inside gdb?

冷暖自知 提交于 2019-12-01 04:23:35

Try the following:

p *si._M_ptr

Now, this assumes that you're using libstdc++.so, given the output for p si.

Alternatively, you could use the value 0x614c20 directly (from your output):

p {int}0x614c20

Both should display the value 5.

but how to get the value stored in it

You will have to cast raw pointer to actual pointer type stored in std::shared_ptr. Use whatis to know what the actual pointer type is.

(gdb) p si
$8 = std::shared_ptr (count 1, weak 0) 0x614c20
(gdb) whatis si
type = std::shared_ptr<int>
(gdb) p *(int*)0x614c20
$9 = 5
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!