C++ smart pointers: std::unique_ptr does everything which std::auto_ptr does, plus it also takes care of exclusive…
Category: Special C++ Posts
This category provides a collection of very special posts on C++ concepts. These posts contain technical explanation and working examples.
Shared Pointer: Understanding shared_ptr
The shared ownership is tracked using a reference count property, which manages the count of shared…