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 起) |
返回与所有指代 *this 的 std::shared_ptr 共享 *this 所有权的 std::shared_ptr<T> 。
等价于执行 std::shared_ptr<T>(weak_this) ,其中 weak-this
是 enable_shared_from_this
的仅用于阐释的 mutable std::weak_ptr<T> 成员。
返回值
与之前存在的 std::shared_ptr 共享 *this 所有权的 std::shared_ptr<T> 。
异常
若在先前未由 std::shared_ptr 共享的对象上调用 shared_from_this
,则抛出 std::bad_weak_ptr (通过 shared_ptr 的构造函数,来源为默认构造的 weak-this
)。
示例
运行此代码
#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(); // 与 pf2 的对象共享所有权 } std::cout << "pf2 is gone\n"; }
输出:
Foo::Foo pf2 is gone Foo::~Foo
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 2529 | C++11 | 在未共享的对象上调用 shared_from_this 为未定义行为
|
抛出 std::bad_weak_ptr |
参阅
(C++11) |
拥有共享对象所有权语义的智能指针 (类模板) |