49:07
Back to Basics: C++ Smart Pointers - David Olsen - CppCon 2022
Smart pointers were one of the many powerful additions to C++11, providing programmers with easy-to-use tools to help manage ...
1:07:26
Back to Basics: Smart Pointers - Rainer Grimm - CppCon 2020
Since C++11, we have four different smart pointer: std::auto_ptr, std::unique_ptr, std::shared_pointer, and std::weak_ptr.
51:17
The Smart Pointers I Wish I Had - Matthew Fleming - CppCon 2019
C++ offers two owning smart pointers, and a proposed non-owning smart pointer in the C++20 Library Fundamentals v2 Technical ...
1:00:51
CppCon 2019: Arthur O'Dwyer “Back to Basics: Smart Pointers”
Attendees will leave this session with a clear understanding of how C++11's smart pointers work under the hood. — Arthur ...
50:16
Back to Basics: Smart Pointers and RAII - Inbal Levi - CppCon 2021
We will then deep dive into C++'s suggested solutions, including smart pointers, and learn how to combine them in our code.
4:55
observe me not - a short story about smart pointers - Mark Zeren - CppCon 2019
http://CppCon.org — Discussion & Comments: https://www.reddit.com/r/cpp/ — Presentation Slides, PDFs, Source Code and other ...
1:01:15
Smarter Cpp Atomic Smart Pointers - Efficient Concurrent Memory Management - Daniel Anderson CppCon
Memory management is hard, especially for concurrent code, even for concurrency experts. To make it more manageable, C++ ...
11:22
CppCon 2014: Lightning Talks - Michael VanLoon "Anatomy of a Smart Pointer"
I work at F5 Networks, and have worked at Disney, VMware, Yahoo!, and Microsoft, among many others. I have benefited from a ...
11:37
SMART POINTERS in C++ (std::unique_ptr, std::shared_ptr, std::weak_ptr)
Thank you to the following Patreon supporters: - Samuel Egger Gear I use: ----------------- BEST laptop for programming!
1:01:49
A Lock-Free Atomic Shared Pointer in Modern Cpp - Timur Doumler - CppCon 2022
std::shared_ptr is a standard smart pointer utility widely used in modern C++. A commonly overlooked property of std::shared_ptr ...
18:20
CupOfT #2: C++ and safe raw pointers
Max talks about safe raw pointers in modern C++ with GSL and the CppCoreCheck static analysis tool for Visual Studio.
4:33
CppCon 2017: Victor Ciura “10 Things Junior C++ Devs Don't Get”
http://CppCon.org — Presentation Slides, PDFs, Source Code and other presenter materials are available at: ...
20:48
std::unique_ptr - A scoped smart pointer | Modern Cpp Series Ep. 33
I will show you why we might want to use this smart pointer versus a raw pointer, and how to create this pointer. While we haven't ...
9:44
are "smart pointers" actually smart?
What's the deal with smart pointers? What problems do they solve? Are they actually smart? In this video, I'll talk about what ...
32:14
Smart Pointers in C++: What, Why, and How with David Millington - CodeRage XI
Smart pointers are a basic concept in C++, but many codebases don't use them or don't trust them, or even worse use the wrong ...
1:00:20
Back to Basics: Pointers - Mike Shah - CppCon 2021
After learning the foundations, we are then going to discuss some of the pitfalls of pointers (e.g. nullptr's, double frees, memory ...
51:38
Inbal Levi - Smart Pointers and RAII - Meeting C++ online
In this talk we will overview one of the most fundamental and useful abilities of C++: Resource Acquisition Is Initialization.
5:03
Post(er)modern C++ - Erik Valkering [ CppCon 2017 ]
http://CppCon.org — Presentation Slides, PDFs, Source Code and other presenter materials are available at: ...
11:54
unique_ptr: C++'s simplest smart pointer
How and why to use unique_ptr. What exactly makes a "smart" pointer smart? The term smart pointer in C++ has come to refer to a ...
14:08
C++11 Miniseries: Smart Pointers
Okay so before I talk about smart pointers I would like to discuss C and C++ style memory management just some uh review so ...