Smart pointers cppcon

play_arrow
60 тыс
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
73 тыс
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 тыс
305

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
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
16 тыс
513

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
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
729 тыс
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 тыс
354

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
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
34 тыс
509

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
14 тыс
524

20:48

std::unique_ptr - A scoped smart pointer | Modern Cpp Series Ep. 33

std::unique_ptr - A scoped smart pointer | Modern Cpp Series Ep. 33

Mike Shah

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

play_arrow
91 тыс
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
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
21 тыс
504

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
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
3 тыс
54

5:03

Post(er)modern C++ -  Erik Valkering [ CppCon 2017 ]

Post(er)modern C++ - Erik Valkering [ CppCon 2017 ]

CppCon

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

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
1 тыс
21

14:08

C++11 Miniseries: Smart Pointers

C++11 Miniseries: Smart Pointers

Acheron

Okay so before I talk about smart pointers I would like to discuss C and C++ style memory management just some uh review so ...