ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

139,930 results

Related queries

modern c++

c++ multithreading

raii c++

c++ smart pointer implementation

smart pointers c++ telugu

c++ lambda

weak pointer c++

c++ polymorphism

references in c++

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,097 views

8 years ago

Low Level
are "smart pointers" actually smart?

Thanks again Yubico for sponsoring this video! Go get a Yubikey at https://www.yubico.com/store/ RIGHT NOW with my offer code ...

9:44
are "smart pointers" actually smart?

103,222 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

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,553 views

3 years ago

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

A smart pointer is a container/wrapper for a raw pointer. In modern C++ smart pointers are defined in the std namespace in the ...

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

128,927 views

4 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,805 views

2 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,695 views

2 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,392 views

1 year 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,955 views

3 years ago

People also watched

Bocksdin Coding
Box / Rc / Arc / Mutex - Smart Pointers Simplified - Rust

Rust is a language that uses smart pointers extensively. The most common of which are Box, Rc, Arc, and Mutex. In this video I'll ...

23:39
Box / Rc / Arc / Mutex - Smart Pointers Simplified - Rust

19,420 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,804 views

3 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

Code to the Moon
Rust Demystified 🪄 Simplifying The Toughest Parts

Rust can be frustrating to learn even for developers with years of experience in a language such as Java, JavaScript, or C++.

14:05
Rust Demystified 🪄 Simplifying The Toughest Parts

214,391 views

3 years 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,004 views

3 years ago

CppCon
Sorting Algorithms: Speed Is Found In The Minds of People - Andrei Alexandrescu - CppCon 2019

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

1:29:55
Sorting Algorithms: Speed Is Found In The Minds of People - Andrei Alexandrescu - CppCon 2019

181,620 views

6 years ago

javidx9
What Are Pointers? (C++)

Included are the very basics, memory allocation, problems to avoid and smart pointers. This video is aimed at those earlier on with ...

41:55
What Are Pointers? (C++)

574,239 views

7 years ago

mCoding
31 nooby C++ habits you need to ditch

How many nooby C++ habits do you have? Up your C++ skill by recognizing and ditching these nooby C++ habits. Post how ...

16:18
31 nooby C++ habits you need to ditch

1,007,773 views

4 years ago

CppCon
Breaking Dependencies - The Visitor Design Pattern in Cpp - Klaus Iglberger - CppCon 2022

https://cppcon.org/ --- Breaking Dependencies - The Visitor Design Pattern in C++ - Klaus Iglberger - CppCon 2022 ...

1:02:09
Breaking Dependencies - The Visitor Design Pattern in Cpp - Klaus Iglberger - CppCon 2022

47,566 views

2 years ago

Computerphile
Essentials: Pointer Power! - Computerphile

Pointers are fundamental in programming and Professor Brailsford couldn't live without them! Professor Brailsford's Code: ...

20:00
Essentials: Pointer Power! - Computerphile

478,014 views

8 years ago

José Tomás Tocino
C++11: smart pointers (shared_ptr y unique_ptr) - tutorial en Español

En este tutorial haremos una introducción a los punteros inteligentes o "smart pointers" que llegaron al lenguaje en la versión ...

9:38
C++11: smart pointers (shared_ptr y unique_ptr) - tutorial en Español

4,605 views

4 years ago

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

Weak pointers are probably the most strange of the 3 types of smart pointers introduce in modern C++, in that they work with ...

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

12,365 views

3 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,742 views

6 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,936 views

6 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,957 views

2 years ago

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

https://cppcon.org/ --- Smarter C++ Atomic Smart Pointers - Efficient Concurrent Memory Management for Everybody - Daniel ...

1:01:15
Smarter Cpp Atomic Smart Pointers - Efficient Concurrent Memory Management - Daniel Anderson CppCon

16,922 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,553 views

2 years ago

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

To try everything Brilliant has to offer—free—for a full 30 days, visit https://brilliant.org/TheCherno . You'll also get 20% off an ...

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

83,176 views

1 year ago

Low Level
you will never ask about pointers again after watching this video

One of the hardest things for new programmers to learn is pointers. Whether its single use pointers, pointers to other pointers, ...

8:03
you will never ask about pointers again after watching this video

3,094,931 views

3 years ago

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,396,198 views

5 years ago