std::enable_shared_from_this<T>::shared_from_this (3) - Linux Manuals
std::enable_shared_from_this<T>::shared_from_this: std::enable_shared_from_this<T>::shared_from_this
NAME
std::enable_shared_from_this<T>::shared_from_this - std::enable_shared_from_this<T>::shared_from_this
Synopsis
shared_ptr<T> shared_from_this(); (1)
shared_ptr<T const> shared_from_this() const; (2)
Returns a std::shared_ptr<T> that shares ownership of *this with all existing std::shared_ptr that refer to *this.
Effectively executes std::shared_ptr<T>(weak_this), where weak_this is the private mutable std::weak_ptr<T> member of enable_shared_from_this.
Notes
It is permitted to call shared_from_this only on a previously shared object, i.e. on an object managed by std::shared_ptr (in particular, shared_from_this cannot be called during construction of *this).
Otherwise
the behavior is undefined
(until C++17)
std::bad_weak_ptr is thrown (by the shared_ptr constructor from a default-constructed weak_this)
(since C++17).
Return value
std::shared_ptr<T> that shares ownership of *this with pre-existing std::shared_ptrs
Example
// Run this code
Output:
See also
shared_ptr smart pointer with shared object ownership semantics
(C++11)