我目前正在尝试学习如何使用智能指针。然而,在做一些实验时,我发现了以下情况,我找不到令人满意的解决方案:
想象一下,您有一个 A 类对象是 B 类对象(子对象)的父对象,但两者应该彼此认识:
class A;
class B;
class A
{
public:
void addChild(std::shared_ptr<B> child)
{
children->push_back(child);
// How to do pass the pointer correctly?
// child->setParent(this); // wrong
// ^^^^
}
private:
std::list<std::shared_ptr<B>> children;
};
class B
{
public:
setParent(std::shared_ptr<A> parent)
{
this->parent = parent;
};
private:
std::shared_ptr<A> parent;
};
问题是 A 类的对象如何将std::shared_ptr
自身的 a ( this
) 传递给它的子对象?
有 Boost 共享指针(Getting a boost::shared_ptr
forthis
)的解决方案,但是如何使用std::
智能指针来处理呢?