std::enable_shared_from_this<T>::shared_from_this
来自 cppreference.com
< cpp | memory | enable shared from this
std::shared_ptr<T> shared_from_this(); |
(1) | (自 C++11 起) |
std::shared_ptr<T const> shared_from_this() const; |
(2) | (自 C++11 起) |
返回一个 std::shared_ptr<T>,它与所有现有的 std::shared_ptr 共享 *this 的所有权,这些 std::shared_ptr 指向 *this。
实际上执行 std::shared_ptr<T>(weak_this),其中 weak-this
是 enable_shared_from_this
的仅供说明的易变 std::weak_ptr<T> 成员。
内容 |
[编辑] 返回值
std::shared_ptr<T>,它与预先存在的 std::shared_ptr 共享 *this 的所有权。
[编辑] 异常
如果在以前未被 std::shared_ptr 共享的对象上调用 shared_from_this
,则会抛出 std::bad_weak_ptr(由从默认构造的 weak-this
生成的 shared_ptr 构造函数抛出)。
[编辑] 示例
运行此代码
#include <iostream> #include <memory> struct Foo : public std::enable_shared_from_this<Foo> { Foo() { std::cout << "Foo::Foo\n"; } ~Foo() { std::cout << "Foo::~Foo\n"; } std::shared_ptr<Foo> getFoo() { return shared_from_this(); } }; int main() { Foo *f = new Foo; std::shared_ptr<Foo> pf1; { std::shared_ptr<Foo> pf2(f); pf1 = pf2->getFoo(); // shares ownership of object with pf2 } std::cout << "pf2 is gone\n"; }
输出
Foo::Foo pf2 is gone Foo::~Foo
[编辑] 缺陷报告
以下行为更改的缺陷报告已追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 2529 | C++11 | 在未共享的对象上调用 shared_from_this 是未定义的行为 |
会抛出 std::bad_weak_ptr |
[编辑] 另请参阅
(C++11) |
具有共享对象所有权语义的智能指针 (类模板) |