Introduction

This lesson will introduce smart pointers in Modern C++.

We'll cover the following...

Introduction #

Smart pointers are one of the most important additions to C++ because they enable us to implement explicit memory management in C++. Beyond the deprecated std::auto_ptr, ...