本文介绍了为什么调用shared_from_this会调用std :: terminate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
考虑以下代码:
class A : public std::enable_shared_from_this<A>
{
public:
std::shared_ptr<A> f()
{
return shared_from_this();
}
};
int main()
{
A a;
std::shared_ptr<A> ptr = a.f();
}
此代码在Visual Studio 2017中终止。我想我在这里做错了。谁能帮我这个?我想要一个由shared_from_this()创建的shared_ptr。
This code terminated in Visual Studio 2017. I guess I am doing something wrong here. Can anyone help me with this? I want a shared_ptr on a created by shared_from_this().
推荐答案
因为 a
不是共享指针拥有的。来自:
Because a
is not a owned by a shared pointer. From cppreference:
这篇关于为什么调用shared_from_this会调用std :: terminate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!