public member function
<memory>

std::enable_shared_from_this::shared_from_this

shared_ptr <T>       shared_from_this();shared_ptr <const T> shared_from_this() const;
获取*this的shared_ptr
构造并返回一个指向*thisshared_ptr对象,并与现有的shared_ptr对象共享所有权。

参数



返回值

指向*this.
Tshared_ptr对象是指针所指向的类型。

另见