In this chapter, you’ll learn about memory management using smart pointers in the C++ programming language.
Acronyms
Microsoft Foundation Classes (MFC)
Run-Time Type Information (RTTI)
Pointers
Chapter 2 gave you an overview of composite type pointers, introducing some concepts and showing a practical use of a composite type pointer.
In this chapter, you will be working with raw pointers and will start working with smart pointers. Specifically, you will learn about unique_ptr, and in Chapter 4 you ...