Become a C Plus Plus Developer:7 C++: Smart Pointers
Posted by Superadmin on November 07 2019 05:09:19

C++: Smart Pointers

 

 

Dive deeper into C++ with smart pointers: intelligent objects that ensure memory and other resources are allocated appropriately and efficiently. Smart pointers are a key component of C++ resource management and a valuable skill for any developer. In this course, Bill Weinman shows how to create unique and shared pointers, use weak and custom pointers, and choose the right smart pointer for your programming objective.

Instructor

Skills covered in this course

Course Contents

 

 

 

01. Introduction



 
 
 
01. Welcome
02. Using Exercise files
03. Why Smart Pointers



02. Concepts



 
 
 
 
04. Creating a unique pointer
05. Creating a shared pointer
06. Using a weak pointer
07. Using a custom deleter
 
 
08. Choosing a smart pointer
09. Goodbye