std::enable_shared_from_this<T>::enable_shared_from_this
constexpr enable_shared_from_this() noexcept; | (1) | (since C++11) |
enable_shared_from_this( const enable_shared_from_this& other ) noexcept; | (2) | (since C++11) |
Создаёт новый объект enable_shared_from_this. Экспонируемое только std::weak_ptr<T> поле weak-this инициализируется значением по умолчанию.
Параметры
| other | - | объект для копирования |
Примечания
Не существует конструктора перемещения: перемещение из объекта, производного от enable_shared_from_this, не передаёт его общую идентичность.
Пример
#include <memory>
struct Foo : public std::enable_shared_from_this<Foo>
{
Foo() {} // implicitly calls enable_shared_from_this constructor
std::shared_ptr<Foo> getFoo() { return shared_from_this(); }
};
int main()
{
std::shared_ptr<Foo> pf1(new Foo);
auto pf2 = pf1->getFoo(); // shares ownership of object with pf1
}См. также
|
(C++11) | умный указатель со свойствами совместного владения объектом (шаблон класса) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/memory/enable_shared_from_this/enable_shared_from_this