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> ,跟踪所有既存的指代 *this 的 std::shared_ptr 所拥有的 *this 的所有权。
注意
这是作为 enable_shared_from_this 一部分的私有 mutable weak_ptr 成员的副本。
返回值
与既存的 std::shared_ptr 共享 *this 所有权的 std::weak_ptr<T> 。
示例
| 本节未完成 原因:暂无示例 | 
参阅
| (C++11) | 拥有共享对象所有权语义的智能指针 (类模板) |