Udostępnij za pośrednictwem


enable_shared_from_this Class

Pozwala generować 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 kontrolowane przez wskaźnik udostępnionych.

Uwagi

Klasa szablonu może być używana jako publiczne klasy podstawowej, aby uprościć tworzenie shared_ptr Class obiekty pochodne typu obiektów:

class derived
    : public enable_shared_from_this<derived>
    {
    };

shared_ptr<derived> sp0(new derived);
shared_ptr<derived> sp1 = sp0->shared_from_this();

Konstruktory destruktor i operator przypisania są chronione, aby zapobiec przypadkowym nadużycia.Typ argumentu szablon Ty musi być typu klasy pochodnej.

Wymagania

Nagłówek: <memory>

Obszar nazw: std

Zobacz też

Informacje

enable_shared_from_this::shared_from_this

shared_ptr Class