Search code examples
Why shared_ptr's reference counting object needs to keep track of the number of weak_ptrs pointi...


c++c++11shared-ptrweak-ptr

Read More
What happens when a copy of shared_ptr is made?...


c++c++11shared-ptr

Read More
Need a better understanding of smart pointers with windows API...


c++c++11winapishared-ptrsmart-pointers

Read More
Sharing underlying state in C++...


c++optimizationshared-ptrshared-memorymove-semantics

Read More
What is the virtual function inside of shared_ptr's Control Block?...


c++pointersshared-ptrsmart-pointers

Read More
CComPtr and std::shared_ptr interoperability...


c++comshared-ptr

Read More
When should I prefer `shared_ptr` to `make_shared`?...


c++c++11shared-ptrmake-shared

Read More
customize std::shared_ptr deleter...


c++c++11shared-ptr

Read More
Private constructor and make_shared...


c++shared-ptr

Read More
shared_ptr assignment in recursive function causing Segmentation Fault...


c++recursionsegmentation-faultshared-ptr

Read More
Why can't I use same templates for different class?...


c++shared-ptr

Read More
using smart pointers in a derived class constructor...


c++oopinheritancepolymorphismshared-ptr

Read More
Passing std::shared_ptr as reference to the lambda capture list (C++)...


c++memory-managementlambdamemory-leaksshared-ptr

Read More
Recursion in shared pointers while variable is defined in the class...


c++shared-ptrsmart-pointers

Read More
How to change const std::shared_ptr after first assignment?...


c++c++11stdshared-ptrsmart-pointers

Read More
shared_ptr<> to an array custom deleter (with make_shared)...


c++arraysshared-ptr

Read More
Convert std::shared_ptr into QPointer...


c++c++11shared-ptrqpointer

Read More
What is the advantage of using shared_ptr with singleton...


c++singletonshared-ptr

Read More
Thread synchronization between data pointed by vectors of std::shared_ptr...


c++multithreadingc++11shared-ptr

Read More
c++ shared_ptr inheritance memory problems "Bad deallocation"...


c++inheritancememory-managementshared-ptrvirtual-destructor

Read More
Can't pass shared pointer as parameter to function definition?...


c++headerxcode8declarationshared-ptr

Read More
Reassign a shared pointer with operator = causes memory leak?...


c++c++11memory-leaksshared-ptr

Read More
How to atomically reset a shared_ptr?...


c++shared-ptratomic

Read More
Call wrapper inside shared_ptr<> instance on its member function...


c++shared-ptrstd-functionstdbind

Read More
Should I use shared_ptr<Object> myObject = (shared_ptr<Object>) new Object() to access p...


c++c++11constructorshared-ptr

Read More
Understanding Shared_ptr with cyclic references?...


c++c++11shared-ptrcyclic-reference

Read More
Does weak_ptr is always expired after shared_ptr reset?...


c++c++11shared-ptrweak-ptr

Read More
How to properly duplicate an object given its shared_ptr...


c++shared-ptrcopy-constructor

Read More
Prevent copy-construction with make_shared...


c++shared-ptrcopy-constructor

Read More
How to write a getter for a container of shared_ptrs which does not allow modification of data...


c++c++11constantsshared-ptr

Read More
BackNext