GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::enable_shared_from_this::shared_from_this(3) C++ Standard Libary std::enable_shared_from_this::shared_from_this(3)

std::enable_shared_from_this::shared_from_this - std::enable_shared_from_this::shared_from_this


std::shared_ptr<T> shared_from_this(); (1)
std::shared_ptr<T const> shared_from_this() const; (2)


Returns a std::shared_ptr<T> that shares ownership of *this with all existing
std::shared_ptr that refer to *this.


Effectively executes std::shared_ptr<T>(weak_this), where weak_this is the private
mutable std::weak_ptr<T> member of enable_shared_from_this.


It is permitted to call shared_from_this only on a previously shared object, i.e. on
an object managed by std::shared_ptr (in particular, shared_from_this cannot be
called during construction of *this).


Otherwise
the behavior is undefined
(until C++17)
std::bad_weak_ptr is thrown (by the shared_ptr constructor from a
default-constructed weak_this)
(since C++17).


std::shared_ptr<T> that shares ownership of *this with pre-existing std::shared_ptrs

// Run this code


#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


shared_ptr smart pointer with shared object ownership semantics
(C++11) (class template)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.