Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in shared-ptr

Using boost::shared_ptr with classes that overload the subscript operator ([])

Moving a shared_ptr to the method called on the object the shared_ptr points to

c++ c++11 c++14 shared-ptr c++17

Having a vector of weak_ptr, want to return a vector of shared_ptr

Using STL algorithms with shared_ptr, function objects

why shared_ptr can access with ingoring the "protected access right"

c++ shared-ptr

c++ exception safety in constructor

assigning one shared_ptr to another

c++11 shared-ptr

Why does shared_ptr signature differ from unique_ptr for arrays?

Using boost::shared_ptr with a view to replacing it later

How to represent shared objects in UML?

std::shared_ptr internals, weak count more than expected

c++ stl shared-ptr

Same address, multiple shared_ptr counters, is it forbidden by C++ standard?

C++ How can I store multiple types in an vector of shared_ptrs?

Usage of Derived class with the std::shared_ptr of Base class

c++ c++11 shared-ptr c++14

Invalidate all shared ptrs toward a specific managed object

c++ c++11 shared-ptr

Most efficient safe way to cast std::map<int, std::shared_ptr<Base>> to std::map<int, std::shared_ptr<Derived>>

c++ casting c++17 shared-ptr

How should you return *this with a shared_ptr?

c++ shared-ptr

Soft (not: weak) references in C++ - Is it possible? Is there an implementation?

Is using a map where value is std::shared_ptr a good design choice for having multi-indexed lists of classes?

Why is boost::enable_shared_from_raw so undocumented?

c++ boost shared-ptr