enable_shared_from_this Class
Umožňuje generovat shared_ptr.
template<class Ty>
class enable_shared_from_this {
public:
shared_ptr<Ty> shared_from_this();
shared_ptr<const Ty> shared_from_this() const;
protected:
enable_shared_from_this();
enable_shared_from_this(const enable_shared_from_this&);
enable_shared_from_this& operator=(const enable_shared_from_this&);
~enable_shared_from_this();
};
Parametry
- Ty
Typ řízeny sdílené ukazatel.
Poznámky
Šablona třídy slouží jako základní třída public zjednodušit vytváření shared_ptr Class objekty, které vlastní objekty odvozený typ:
class derived
: public enable_shared_from_this<derived>
{
};
shared_ptr<derived> sp0(new derived);
shared_ptr<derived> sp1 = sp0->shared_from_this();
Konstruktory, destructor a operátor přiřazení jsou chráněny zabránit náhodnému zneužití.Argument typ šablony Ty musí být typu odvozené třídy.
Požadavky
Záhlaví: <memory>
Obor názvů: std