命名空间
变体
操作

std::enable_shared_from_this<T>::shared_from_this

来自 cppreference.com
 
 
实用程序库
语言支持
类型支持 (基本类型、RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇表类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
动态内存管理
未初始化内存算法
约束未初始化内存算法
分配器
垃圾回收支持
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)



 
 
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-thisenable_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

[编辑] 另请参阅

具有共享对象所有权语义的智能指针
(类模板) [编辑]