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.
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++ ...
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 ...
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 ...
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 ...
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.
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 ...
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 ...
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: ...
51:17
CppCon 2019 Matthew Fleming “The Smart Pointers I Wish I Had”
Hello the countdown clock has begun counting down so I'm going to begin this is my talk on smart pointers the original alternate ...
1:00:21
Introduction to Smart Pointers and Why
By Mike Shah, presented at Core C++ 2022. Pointers are one of the most powerful tools in the C++ language available to ...
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.
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 ...
1:00:56
Back to Basics: Pointers and Memory - Ben Saks - CppCon 2020
The prevailing wisdom in Modern C++ is to favor smart pointers and container classes over raw pointers and built-in arrays ...