enable_shared_from_this::shared_from_this
Generuje shared_ptr.
shared_ptr<Ty> shared_from_this();
shared_ptr<const Ty> shared_from_this() const;
Uwagi
Element członkowski funkcji każdego powrotu shared_ptr — Klasa obiekt, który jest właścicielem *(Ty*)this.
Przykład
// std_tr1__memory__shared_from_this.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
struct base
: public std::enable_shared_from_this<base>
{
int val;
};
int main()
{
std::shared_ptr<base> sp0(new base);
std::shared_ptr<base> sp1 = sp0->shared_from_this();
sp0->val = 3;
std::cout << "sp1->val == " << sp1->val << std::endl;
return (0);
}
Wymagania
Nagłówek: <pamięć>
Przestrzeń nazw: std