Smart pointers cppcon

play_arrow
61 тыс
1 тыс

49:07

Back to Basics: C++ Smart Pointers - David Olsen - CppCon 2022

Back to Basics: C++ Smart Pointers - David Olsen - CppCon 2022

CppCon

Smart pointers were one of the many powerful additions to C++11, providing programmers with easy-to-use tools to help manage ...

play_arrow
31 тыс
710

1:07:26

Back to Basics: Smart Pointers - Rainer Grimm - CppCon 2020

Back to Basics: Smart Pointers - Rainer Grimm - CppCon 2020

CppCon

Since C++11, we have four different smart pointer: std::auto_ptr, std::unique_ptr, std::shared_pointer, and std::weak_ptr.

play_arrow
13 тыс
208

51:17

The Smart Pointers I Wish I Had -  Matthew Fleming - CppCon 2019

The Smart Pointers I Wish I Had - Matthew Fleming - CppCon 2019

CppCon

C++ offers two owning smart pointers, and a proposed non-owning smart pointer in the C++20 Library Fundamentals v2 Technical ...

play_arrow
74 тыс
1 тыс

1:00:51

CppCon 2019: Arthur O'Dwyer “Back to Basics: Smart Pointers”

CppCon 2019: Arthur O'Dwyer “Back to Basics: Smart Pointers”

CppCon

Attendees will leave this session with a clear understanding of how C++11's smart pointers work under the hood. — Arthur ...

play_arrow
17 тыс
306

50:16

Back to Basics: Smart Pointers and RAII - Inbal Levi - CppCon 2021

Back to Basics: Smart Pointers and RAII - Inbal Levi - CppCon 2021

CppCon

We will then deep dive into C++'s suggested solutions, including smart pointers, and learn how to combine them in our code.

play_arrow
16 тыс
515

1:01:15

Smarter Cpp Atomic Smart Pointers - Efficient Concurrent Memory Management - Daniel Anderson  CppCon

Smarter Cpp Atomic Smart Pointers - Efficient Concurrent Memory Management - Daniel Anderson CppCon

CppCon

Memory management is hard, especially for concurrent code, even for concurrency experts. To make it more manageable, C++ ...

play_arrow
1 тыс
22

4:55

observe me not - a short story about smart pointers - Mark Zeren - CppCon 2019

observe me not - a short story about smart pointers - Mark Zeren - CppCon 2019

CppCon

http://CppCon.org — Discussion & Comments: https://www.reddit.com/r/cpp/ — Presentation Slides, PDFs, Source Code and other ...

play_arrow
7 тыс
51

11:22

CppCon 2014: Lightning Talks - Michael VanLoon

CppCon 2014: Lightning Talks - Michael VanLoon "Anatomy of a Smart Pointer"

CppCon

I work at F5 Networks, and have worked at Disney, VMware, Yahoo!, and Microsoft, among many others. I have benefited from a ...

play_arrow
732 тыс
28 тыс

11:37

SMART POINTERS in C++ (std::unique_ptr, std::shared_ptr, std::weak_ptr)

SMART POINTERS in C++ (std::unique_ptr, std::shared_ptr, std::weak_ptr)

The Cherno

Thank you to the following Patreon supporters: - Samuel Egger Gear I use: ----------------- BEST laptop for programming!

play_arrow
18 тыс
355

1:01:49

A Lock-Free Atomic Shared Pointer in Modern Cpp - Timur Doumler - CppCon 2022

A Lock-Free Atomic Shared Pointer in Modern Cpp - Timur Doumler - CppCon 2022

CppCon

std::shared_ptr is a standard smart pointer utility widely used in modern C++. A commonly overlooked property of std::shared_ptr ...

play_arrow
92 тыс
4 тыс

9:44

are

are "smart pointers" actually smart?

Low Level

What's the deal with smart pointers? What problems do they solve? Are they actually smart? In this video, I'll talk about what ...

play_arrow
818
15

18:20

CupOfT #2: C++ and safe raw pointers

CupOfT #2: C++ and safe raw pointers

Max Galkin

Max talks about safe raw pointers in modern C++ with GSL and the CppCoreCheck static analysis tool for Visual Studio.

play_arrow
21 тыс
505

1:00:20

Back to Basics: Pointers - Mike Shah - CppCon 2021

Back to Basics: Pointers - Mike Shah - CppCon 2021

CppCon

After learning the foundations, we are then going to discuss some of the pitfalls of pointers (e.g. nullptr's, double frees, memory ...

play_arrow
10 тыс
124

32:14

Smart Pointers in C++: What, Why, and How with David Millington - CodeRage XI

Smart Pointers in C++: What, Why, and How with David Millington - CodeRage XI

Embarcadero Technologies

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 ...

play_arrow
34 тыс
510

4:33

CppCon 2017: Victor Ciura “10 Things Junior C++ Devs Don't Get”

CppCon 2017: Victor Ciura “10 Things Junior C++ Devs Don't Get”

CppCon

http://CppCon.org — Presentation Slides, PDFs, Source Code and other presenter materials are available at: ...

play_arrow
61
2

51:17

CppCon 2019 Matthew Fleming “The Smart Pointers I Wish I Had”

CppCon 2019 Matthew Fleming “The Smart Pointers I Wish I Had”

Sammy Hegab

Hello the countdown clock has begun counting down so I'm going to begin this is my talk on smart pointers the original alternate ...

play_arrow
2 тыс
55

1:00:21

Introduction to Smart Pointers and Why

Introduction to Smart Pointers and Why

CoreCppIL

By Mike Shah, presented at Core C++ 2022. Pointers are one of the most powerful tools in the C++ language available to ...

play_arrow
2 тыс
65

51:38

Inbal Levi - Smart Pointers and RAII - Meeting C++ online

Inbal Levi - Smart Pointers and RAII - Meeting C++ online

Meeting Cpp

In this talk we will overview one of the most fundamental and useful abilities of C++: Resource Acquisition Is Initialization.

play_arrow
51 тыс
2 тыс

11:54

unique_ptr: C++'s simplest smart pointer

unique_ptr: C++'s simplest smart pointer

mCoding

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 ...

play_arrow
43 тыс
1 тыс

1:00:56

Back to Basics: Pointers and Memory - Ben Saks - CppCon 2020

Back to Basics: Pointers and Memory - Ben Saks - CppCon 2020

CppCon

The prevailing wisdom in Modern C++ is to favor smart pointers and container classes over raw pointers and built-in arrays ...