私が持っているテストプログラム以下のように:gdb内のスマートポインタの内部データを表示する方法は?
#include<memory>
#include<iostream>
using namespace std;
int main()
{
shared_ptr<int> si(new int(5));
return 0;
}
デバッグそれ:
(gdb) l
1 #include<memory>
2 #include<iostream>
3 using namespace std;
4
5 int main()
6 {
7 shared_ptr<int> si(new int(5));
8 return 0;
9 }
10
(gdb) b 8
Breakpoint 1 at 0x400bba: file testshare.cpp, line 8.
(gdb) r
Starting program: /home/x/cpp/x01/a.out
Breakpoint 1, main() at testshare.cpp:8
8 return 0;
(gdb) p si
$1 = std::shared_ptr (count 1, weak 0) 0x614c20
それだけsi
のポインタ型の情報を出力しますが、(で、それに格納された値を取得する方法この場合5
)? デバッグ中にsi
の内部コンテンツを確認するにはどうすればよいですか?
*「価値ストアin si」*とはどういう意味ですか? 'int''の値は' 'si''を指していますか? –
[GDBのstd :: tr1 :: shared \ _ptrのターゲットにアクセスする方法](https://stackoverflow.com/questions/24917556/how-to-access-target-of-stdtr1shared-ptr-in) -gdb)| 'unique_ptr':https://stackoverflow.com/questions/22798601/how-to-debug-c11-code-with-unique-ptr-in-ddd-or-gdb –