bad_weak_ptr在基类中调用shared_from_this()时

时间:2012-02-21 08:55:20

标签: c++ boost shared-ptr weak-references

我有一个SuperParent类,一个Parent类(派生自SuperParent)并且都包含shared_ptrChild类(其中包含weak_ptrSuperParent)。不幸的是,我在尝试设置bad_weak_ptr指针时遇到Child异常。代码如下:

#include <boost/enable_shared_from_this.hpp>
#include <boost/make_shared.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>

using namespace boost;

class SuperParent;

class Child {
public:
    void SetParent(shared_ptr<SuperParent> parent)
    {
        parent_ = parent;
    }
private:
    weak_ptr<SuperParent> parent_;
};

class SuperParent : public enable_shared_from_this<SuperParent> {
protected:
    void InformChild(shared_ptr<Child> grandson)
    {
        grandson->SetParent(shared_from_this());
        grandson_ = grandson;
    }
private:
    shared_ptr<Child> grandson_;
};

class Parent : public SuperParent, public enable_shared_from_this<Parent> {
public:
    void Init()
    {
        child_ = make_shared<Child>();
        InformChild(child_);
    }
private:
    shared_ptr<Child> child_;
};

int main()
{
    shared_ptr<Parent> parent = make_shared<Parent>();
    parent->Init();
    return 0;
}

1 个答案:

答案 0 :(得分:5)

这是因为您的Parent类继承了enable_shared_from_this两次。 相反,你应该继承它一次 - 通过SuperParent。如果你想能够得到shared_ptr&lt;父母&gt;在Parent类中,您也可以从以下帮助器类继承它:

template<class Derived> 
class enable_shared_from_This
{
public:
typedef boost::shared_ptr<Derived> Ptr;

Ptr shared_from_This()
{
    return boost::static_pointer_cast<Derived>(static_cast<Derived *>(this)->shared_from_this());
}
Ptr shared_from_This() const
{
    return boost::static_pointer_cast<Derived>(static_cast<Derived *>(this)->shared_from_this());
}
};

然后,

class Parent : public SuperParent, public enable_shared_from_This<Parent>