enable_shared_from_this Class
Generate yardımcı bir 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();
};
Parametreler
- Ty
Paylaşılan işaretçi tarafından denetlenen türü.
Notlar
Şablon sınıfı oluşturma basitleştirmek için ortak bir temel sınıf kullanılabilir shared_ptr Class türetilmiş bir tür nesnelerin sahibi nesneleri:
class derived
: public enable_shared_from_this<derived>
{
};
shared_ptr<derived> sp0(new derived);
shared_ptr<derived> sp1 = sp0->shared_from_this();
Kurucular, yıkıcı ve atama işleci yanlışlıkla kötüye önlemeye yardımcı olmak için korunmuş olur. Şablon değişkeni türü Ty türetilmiş bir sınıf türünde olması gerekir.
Gereksinimler
Başlık: <memory>
Namespace: std