我遇到类似于void pointer returned from function heap corruption的问题

相似之处在于,当离开使用unique_ptr的作用域时,会收到“堆损坏”消息。

这里的代码:

void CMyClass::SomeMethod ()
{
  std::unique_ptr<IMyInterface> spMyInterface;
  spMyInterface.reset(new CMyInterfaceObject()); // CMyInterfaceObject is derived from IMyInterface

  any_list.push_back(spMyInterface.get()); // any_list: std::list<IMyInterface*>

  any_list.clear(); // only clears the pointers, but doesn't delete it

  // when leaving the scope, unique_ptr deletes the allocated objects... -> heap corruption
}

知道为什么会这样吗?

最佳答案

std::unique_ptr是一个智能指针,它通过指针保留对对象的唯一所有权,并在unique_ptr超出范围时销毁该对象。

在您的情况下,您已在SomeMethod()中声明了std::unique_ptr<IMyInterface> spMyInterface;,因此一旦执行离开SomeMethod()的范围,您的对象就会被销毁。

看看unique_ptr

关于c++ - 使用unique_ptr离开范围时堆损坏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10006767/

10-11 19:13