[ Web Proxy ]
URL:
Viewing: https://ru.cppreference.com/cpp/memory/enable_shared_from_this/shared_from_this [Back]  [Original]

std::enable_shared_from_this::shared_from_this cppreference.com
cppreference.com

std::enable_shared_from_this::shared_from_this

cppreference.com

<metanoindex/>

 
C++
(C++20)
(C++20)
(C++11)
(C++20)
/
(C++11)
(C++11)
(C++11)
(C++17)
 
 
no section name
no section name
(C++11)( C++23)
(C++11)( C++23)
(C++11)( C++23)
(C++11)( C++23)
(C++11)( C++23)
(C++11)( C++23)



no section name
 
 
<tbody> </tbody>
shared_ptr<T> shared_from_this();
(1)
shared_ptr<T const> shared_from_this() const;
(2)
std::shared_ptr<T>, *this std::shared_ptr<T>, *this.
:
Returns a std::shared_ptr<T> that shares ownership of *this with all existing std::shared_ptr<T> that refer to *this.
Google.
. .

shared_from_this, std::shared_ptr<T> p, *this.
:
Before calling shared_from_this, there should be at least one std::shared_ptr<T> p that owns *this.
Google.
. .

std::shared_ptr<T>, *this std::shared_ptr<T>s
:
std::shared_ptr<T> that shares ownership of *this with pre-existing std::shared_ptr<T>s
Google.
. .

#include <iostream>
#include <memory>

struct Foo : public std::enable_shared_from_this<Foo> {
    Foo() { std::cout << "Foo::Foo\n"; }
    ~Foo() { std::cout << "Foo::~Foo\n"; }
    std::shared_ptr<Foo> getFoo() { return shared_from_this(); }
};

int main() {
    Foo *f = new Foo;
    std::shared_ptr<Foo> pf1;

    {
        std::shared_ptr<Foo> pf2(f);
        pf1 = pf2->getFoo();  // shares ownership of object with pf2
    }

    std::cout << "pf2 is gone\n";
}

:

Foo::Foo
pf2 is gone
Foo::~Foo

.


( ) []

Web Proxy Viewer  |  New URL  |  Original Page