std::enable_shared_from_this<T>::weak_from_this
来自 cppreference.com
< cpp | memory | enable shared from this
std::weak_ptr<T> weak_from_this() noexcept; |
(1) | (自 C++17 起) |
std::weak_ptr<T const> weak_from_this() const noexcept; |
(2) | (自 C++17 起) |
返回一个 std::weak_ptr<T>,它跟踪所有现有 std::shared_ptr 对 *this 的所有权。
内容 |
[编辑] 返回值
std::weak_ptr<T>,与预先存在的 std::shared_ptr 共享 *this 的所有权。
[编辑] 注释
weak_from_this
仅复制作为 enable_shared_from_this
一部分的 weak_ptr
成员。
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_enable_shared_from_this |
201603L | (C++17) | std::enable_shared_from_this::weak_from_this |
[编辑] 示例
本节内容不完整 原因:没有示例 |
[编辑] 另请参阅
(C++11) |
具有共享对象所有权语义的智能指针 (类模板) |