Search code examples
Do Primitive Types in C++ have destructors?...


c++pointersdestructorsmart-pointers

Read More
What is a disadvantage of initializing a smart pointer data member in a member initializer list?...


c++smart-pointersmember-initialization

Read More
creating a shared_ptr from unique_ptr...


c++c++11g++smart-pointersclang++

Read More
Does any of C++ smart pointers avoid data race in strict sense?...


c++smart-pointersrace-condition

Read More
What's the difference between BSTR and _bstr_t?...


c++comsmart-pointers

Read More
Why can I not push_back a element into a vector pointer?...


c++pointersvectorsegmentation-faultsmart-pointers

Read More
Is there a never-null unique owner of heap allocated objects?...


c++architecturenullheap-memorysmart-pointers

Read More
Simplified shared_ptr implementation...


c++shared-ptrsmart-pointers

Read More
How to use unique_ptr fo automatic memory management?...


c++smart-pointers

Read More
Unique pointer to a pointer memory management...


c++smart-pointers

Read More
Is there any use for unique_ptr with array?...


c++c++11smart-pointersunique-ptr

Read More
How to implement copyable and movable wrapper around reference counted type?...


c++smart-pointerscopy-constructorcopy-assignment

Read More
How to have a smart pointer to a view object get ownership of the underlying buffer object?...


c++smart-pointers

Read More
no known conversion from 'std::shared_ptr<int>' to 'int *' for 1st argument...


c++smart-pointers

Read More
State of underlying resource when a shared_ptr is created from the raw pointer?...


c++pointersc++14shared-ptrsmart-pointers

Read More
Why am I not reading the first member of the class when I point to the object with a pointer?...


c++pointerssmart-pointers

Read More
What is the best way to resolve mutable borrow after immutable borrow, IF there is no perceived refe...


rustreferencesmart-pointersborrow-checker

Read More
Why does the pointer exist even after the unique_ptr to which the pointer is assigned goes out of sc...


c++pointersmemory-managementsmart-pointersunique-ptr

Read More
A shared pointer to a section of memory belonging to another shared pointer...


c++smart-pointers

Read More
Smart pointers still refers to raw pointer even though reset is applied...


c++c++11g++smart-pointers

Read More
Differences between std::make_unique and std::unique_ptr with new...


c++c++11c++14smart-pointersunique-ptr

Read More
How to Store and retrieve the the correct Type of DerivedClass Pointer To/From Map of BaseClass Poin...


c++c++11inheritancemultiple-inheritancesmart-pointers

Read More
Printing unique_ptr to cout...


c++c++11iostreamsmart-pointersunique-ptr

Read More
How to Initialize a Map of Unique pointer Objects sorted by a Object Variable...


c++smart-pointersunique-ptrstdmap

Read More
Cannot convert unique_ptr<derived> to unique_ptr<base>...


c++smart-pointersunique-ptr

Read More
How to pass a Smart Pointer in a method without deleting it...


c++pointerssmart-pointers

Read More
How to use gmock SaveArgPointee with with std::shared_ptr of derived class...


c++polymorphismsmart-pointersgooglemock

Read More
How to implement cast for "smart pointer" non-const to const...


c++smart-pointers

Read More
Returning unique_ptr private member data without transferring ownership...


c++smart-pointersunique-ptr

Read More
Move Constructor and = operator for Shared Pointer...


c++moveshared-ptrsmart-pointers

Read More
BackNext