ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

3,028,452 results

Related queries

modern c++

c++ multithreading

c++ smart pointer implementation

c++ lambda

weak pointer c++

c++ polymorphism

c++ references

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

Patreon ▻ https://patreon.com/thecherno Twitter ▻ https://twitter.com/thecherno Instagram ▻ https://instagram.com/thecherno ...

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

777,138 views

8 years ago

Dave's Garage
Modern C++: Upgrade Your Skills with Shared Pointers!

Dave take you a tour of some core advanced C++ features including smart pointers, weak pointers, constructor aliasing, custom ...

17:43
Modern C++: Upgrade Your Skills with Shared Pointers!

73,961 views

2 years ago

Low Level
are "smart pointers" actually smart?

Are they actually smart? In this video, I'll talk about what problems a smart pointer solves, the types of smart pointers in C++, and ...

9:44
are "smart pointers" actually smart?

103,234 views

2 years ago

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

11:54
unique_ptr: C++'s simplest smart pointer

55,825 views

2 years ago

Kevin Wood | Robotics & AI
C++ Smart Pointer (unique ptr, shared ptr, weak ptr)

Get FREE Robotics & AI Resources (Guide, Textbooks, Courses, Resume Template, Code & Discounts) – Sign up via the pop-up ...

10:14
C++ Smart Pointer (unique ptr, shared ptr, weak ptr)

1,555 views

2 years ago

CppNuts
Write Your Own Shared Pointer Class In C++

JOIN ME https://www.youtube.com/channel/UCs6sf4iRhhE875T1QjG3wPQ/join https://www.patreon.com/cppnuts In this video, ...

5:43
Write Your Own Shared Pointer Class In C++

1,718 views

3 months ago

Mike Shah
std::shared_ptr - A reference counted smart pointer  | Modern Cpp Series Ep. 34

Full C++ Series Playlist: https://www.youtube.com/playlist?list=PLvv0ScY6vfd8j-tlhYVPYgiIyXduu6m-L ▻Find full courses on: ...

14:29
std::shared_ptr - A reference counted smart pointer | Modern Cpp Series Ep. 34

14,128 views

3 years ago

People also watched

freeCodeCamp.org
Pointers in C / C++ [Full Course]

Pointers in C and C++ are often challenging to understand. In this course, they will be demystified, allowing you to use pointers ...

3:47:23
Pointers in C / C++ [Full Course]

5,398,169 views

5 years ago

CppCon
Real-time Programming with the C++ Standard Library - Timur Doumler - CppCon 2021

https://cppcon.org/ https://github.com/CppCon/CppCon2021 --- In applications such as video games and audio processing, ...

1:00:49
Real-time Programming with the C++ Standard Library - Timur Doumler - CppCon 2021

64,724 views

3 years ago

The Cherno
Weak Pointers in C++ (std::weak_ptr)

https://hostinger.com/cherno CHAPTERS 0:00 - Intro 1:14 - How shared pointers work 5:40 - Raw pointers as weak references ...

17:25
Weak Pointers in C++ (std::weak_ptr)

83,185 views

1 year ago

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

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

51:17
The Smart Pointers I Wish I Had - Matthew Fleming - CppCon 2019

13,042 views

6 years ago

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

https://cppcon.org/ ...

1:07:26
Back to Basics: Smart Pointers - Rainer Grimm - CppCon 2020

31,475 views

5 years ago

ACCU Conference
A lock-free std::atomic std::shared_ptr - Timur Doumler - ACCU 2022

Join The ACCU Membership For Exclusive Benefits, Discounts & Reduced Conference Ticket Pricing: ...

1:28:18
A lock-free std::atomic std::shared_ptr - Timur Doumler - ACCU 2022

4,142 views

3 years ago

CppCon
C++ Lambda Idioms - Timur Doumler - CppCon 2022

https://cppcon.org/ --- C++ Lambda Idioms - Timur Doumler - CppCon 2022 https://github.com/CppCon/CppCon2022 Ever since ...

1:04:45
C++ Lambda Idioms - Timur Doumler - CppCon 2022

56,806 views

3 years ago

CppNuts
Write Your Own Unique Pointer Class In C++

JOIN ME https://www.youtube.com/channel/UCs6sf4iRhhE875T1QjG3wPQ/join https://www.patreon.com/cppnuts Learn how to ...

8:02
Write Your Own Unique Pointer Class In C++

1,405 views

4 months ago

CppCon
Back to Basics: C++ API Design - Jason Turner - CppCon 2022

https://cppcon.org/ --- Back to Basics: C++ API Design - Jason Turner - CppCon 2022 https://github.com/CppCon/CppCon2022 ...

1:00:42
Back to Basics: C++ API Design - Jason Turner - CppCon 2022

107,014 views

3 years ago

Dave's Garage
Master Pointers in C:  10X Your C Coding!

Pointer basics, indirection, void pointers, pointers to pointers, function pointers, callbacks and much more in this comprehensive ...

14:12
Master Pointers in C: 10X Your C Coding!

406,730 views

2 years ago

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

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

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

75,744 views

6 years ago

CoreCppIL
Considerations when Working with Shared Pointers

I will present some important caveats when working with shared pointers: performance, memory efficiency, and design ...

28:10
Considerations when Working with Shared Pointers

1,604 views

3 years ago

NDC Conferences
C++ Smart Pointers - Usage and Secrets - Nicolai Josuttis

shared_ptr and unique_ptr are the key smart pointers of Modern C++. This talk gives an overview about when to use them and ...

1:02:22
C++ Smart Pointers - Usage and Secrets - Nicolai Josuttis

22,937 views

6 years ago

Caleb Curry
Smart Pointers in C++ (Stop Using new?)

Start your software dev career - https://calcur.tech/dev-fundamentals Be notified of new C/C++ course: ...

17:18
Smart Pointers in C++ (Stop Using new?)

19,808 views

2 years ago

Bo Qian
C++ 11 Library: Shared Pointer - I

This video talks about C++ 11 shared pointer and its simple usage.

11:57
C++ 11 Library: Shared Pointer - I

102,573 views

12 years ago

CodeBeauty
SMART POINTERS in C++ (for beginners in 20 minutes)

There are three types of smart pointers in C++: unique pointer, shared pointer and weak pointer (std::unique_ptr, std::shared_ptr, ...

24:32
SMART POINTERS in C++ (for beginners in 20 minutes)

128,936 views

4 years ago

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

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

17,957 views

3 years ago

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

https://cppcon.org/ --- Back to Basics: C++ Smart Pointers - David Olsen - CppCon 2022 https://github.com/CppCon/CppCon2022 ...

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

70,559 views

3 years ago

Amy Sigona
C++ Fundamentals - Smart Pointers, Unique & Shared

And finally, an actual practical example of using a shared pointer! I haven't had a need for them much, but one scenario popped ...

1:03:59
C++ Fundamentals - Smart Pointers, Unique & Shared

81 views

2 years ago

Mike Shah
std::weak_ptr - A non-owning smart pointer | Modern Cpp Series Ep. 35

Full C++ Series Playlist: https://www.youtube.com/playlist?list=PLvv0ScY6vfd8j-tlhYVPYgiIyXduu6m-L ▻Find full courses on: ...

13:08
std::weak_ptr - A non-owning smart pointer | Modern Cpp Series Ep. 35

12,367 views

3 years ago

xDahl
Casey Muratori | Smart-Pointers, RAII, ZII? Becoming an N+2 programmer

Casey Muratori giving his thoughts on smart-pointers, RAII, OOP, briefly the Rust borrow checker etc, and why you should avoid ...

30:12
Casey Muratori | Smart-Pointers, RAII, ZII? Becoming an N+2 programmer

123,443 views

1 year ago

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

https://cppcon.org/ --- A Lock-Free Atomic Shared Pointer in Modern Cpp - Timur Doumler - CppCon 2022 ...

1:01:49
A Lock-Free Atomic Shared Pointer in Modern Cpp - Timur Doumler - CppCon 2022

18,766 views

3 years ago

CppNuts
Shared Pointer In C++

JOIN ME ————— YouTube https://www.youtube.com/channel/UCs6sf4iRhhE875T1QjG3wPQ/join Patreon ...

12:25
Shared Pointer In C++

49,721 views

5 years ago

Sonia: Code & Skate | Play
Lock-Free Atomic Shared Pointer in C - Lock Free Programming (Part #1)

See project on GitHub: https://github.com/sadhbh-c0d3/lock-free 00:00 - Start 00:10 - What is Shared_Ptr (C vs C++) 00:56 - Our ...

36:58
Lock-Free Atomic Shared Pointer in C - Lock Free Programming (Part #1)

2,497 views

1 year ago