std :: make_shared <type>创建内存泄漏

时间:2018-06-19 11:49:50

标签: c++ c++11 std smart-pointers

当我使用std :: make_shared时,Valgrind给我一些内存泄漏:

TEST_F(CTestChild, add_gran_child) {
    auto child{ std::make_shared<CChild>(TType::Home, std::make_shared<CMockParent>()) };
    NiceMock<CMockCaller> caller;
    auto gran_child( std::make_shared<CMockGranChild>(TType::Girl, child, caller) );
    child->Add(gran_child);
    EXPECT_EQ(child->GetCount(), 1);
}

class CMockParent : CParent{
public:
    void something(void) override {}
}

class CParent{
public:
    virtual void something(void) = 0;
}

class CChild{
public:
    CChild(TType, shared_ptr<CParent> a) : _parent(a) {}
    void Add(shared_ptr<CGranChild> a) { _list.push_back(a) }
    shared_ptr<CParent> _parent;
    TList<shared_ptr<CGranChild>> _list;
}

class CGranChild{
public:
    CGranChild(TType, shared_ptr<CChild> a) : i_parent(a) {}
    shared_ptr<CChild> _parent;
}

为什么make_shared给我内存泄漏?

编辑:为了更好地理解代码,我提供了类的摘要。

1 个答案:

答案 0 :(得分:7)

您有2个彼此拥有的共享指针。

考虑明确的所有权概念。然后将std::weak_ptr存储在非所有者中。要访问非拥有对象.lock() weak_ptr,并在使用前检查生成的shared_ptr。