我还没有参与过共享指针..我只知道这个概念。我正在尝试调试以下c ++类中的函数,该类存储XML文件的数据(通过xerces库读入)。
// header file
class ParamNode;
typedef boost::shared_ptr<ParamNode> PtrParamNode;
class ParamNode : public boost::enable_shared_from_this<ParamNode> {
public:
...
typedef enum { DEFAULT, EX, PASS, INSERT, APPEND } ActionType;
bool hasChildren() const;
PtrParamNode GetChildren();
PtrParamNode Get(const std::string& name, ActionType = DEFAULT );
protected:
....
ActionType defaultAction_;
}
现在,如果我正在调试一段代码,其中我有一个指向类ParamNode
的指针实例,并且它被称为paramNode_
PtrParamNode paramNode_;
// read xml file with xerces
paramNode_ = xerces->CreateParamNodeInstance();
// now, the xml data is stored in paramNode_.
std::string probGeo;
// this works in the code, but not in (gdb)!!
paramNode_->Get("domain")->GetValue("gt",probGeo);
cout << probGeo << endl; // <-- breakpoint HERE
使用gdb
我正在检查paramNode_
对象:
(gdb) p paramNode_
$29 = {px = 0x295df70, pn = {pi_ = 0x2957ac0}}
(gdb) p *paramNode_.px
$30 = {
<boost::enable_shared_from_this<mainclass::ParamNode>> = {weak_this_ = {px = 0x295df70, pn = {pi_ = 0x2957ac0}}},
_vptr.ParamNode = 0x20d5ad0 <vtable for mainclass::ParamNode+16>,
...
name_= {...},
children_ = {size_ = 6, capacity_ = 8, data_ = 0x2969798},
defaultAction_ = mainclass::ParamNode::EX, }
并打印其成员:
(gdb) ptype *paramNode_.px
type = class mainclass::ParamNode : public boost::enable_shared_from_this<mainclass::ParamNode> {
protected:
...
mainclass::ParamNode::ActionType defaultAction_;
public:
bool HasChildren(void) const;
mainclass::PtrParamNode GetChildren(void);
mainclass::PtrParamNode Get(const std::string &, mainclass::ParamNode::ActionType);
但是,我只能调用HasChildren
或GetChildren
函数,而从Get
调用gdb
会导致错误:
(gdb) p (paramNode_.px)->HasChildren()
$7 = true
(gdb) p (paramNode_.px)->GetChildren()
$8 = (mainclass::ParamNodeList &) @0x295dfb8: {
size_ = 6,
capacity_ = 8,
data_ = 0x29697a8
}
(gdb) p (paramNode_.px)->Get("domain")
Cannot resolve method mainclass::ParamNode::Get to any overloaded instance
(gdb) set overload-resolution off
(gdb) p (paramNode_.px)->Get("domain")
One of the arguments you tried to pass to Get could not be converted to what the function wants.
(gdb) p (paramNode_.px)->Get("domain", (paramNode_.px).defaultAction_)
One of the arguments you tried to pass to Get could not be converted to what the function wants.
在代码中,执行Get("domain")
函数的效果很好。这是为什么?如果你在答案中包含解释,我很感谢,因为我对共享指针的了解有限。
答案 0 :(得分:27)
gdb
不是编译器,它不会为您执行(不那么)良好的用户定义类型转换。如果您希望调用想要string
的函数,则需要为其设置string
,而不是const char*
。
不幸的是,gdb
无法在命令行上为您构造std::string
,因为它不是编译器,而且对象创建不是简单的函数调用。
因此,您必须在程序中添加一个辅助函数,这需要const char*
并返回std::string&
。请注意这里的参考。它不能按值返回,因为gdb
将无法通过const引用传递结果(它不是编译器!)您可以选择返回对静态对象的引用,或者返回分配给对象的对象。堆。在后一种情况下,它会泄漏内存,但这不是什么大问题,因为该函数只能从调试器中调用。
std::string& SSS (const char* s)
{
return *(new std::string(s));
}
然后在gdb
gdb> p (paramNode_.px)->Get(SSS("domain"))
应该有用。
答案 1 :(得分:10)
上一个答案的几个补充 -
gdb最终可能会学习如何进行这样的转换。它现在不能;但是正在积极努力改进对C ++表达式解析的支持。
gdb也不了解默认参数。这部分是gdb中的一个错误;但也部分是g ++中的一个错误,它不会将它们发送到DWARF中。我认为DWARF甚至没有定义一种发出非平凡的默认参数的方法。
答案 2 :(得分:2)
n.m.的答案很棒,但为了避免编辑代码并重新编译,请查看Creating C++ string in GDB中给出的解决方案。
在该解决方案中,他们演示了在堆上为std::string
分配空间,然后初始化std::string
以传递到他们想要从function
调用的gdb