ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

305 results

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

56,252 views

2 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!

74,568 views

2 years ago

mCoding
unique_ptr is NOT just for heap allocations | custom deleters

Define your own deleter. The smart pointer type unique_ptr is NOT just for automating deletes of heap-allocated pointers.

8:57
unique_ptr is NOT just for heap allocations | custom deleters

14,352 views

2 years ago

C++ Weekly With Jason Turner
C++ Weekly - Ep 332 - C++ Lambda vs std::function vs Function Pointer

Awesome T-Shirts! Sponsors! Books! ☟☟ C++ Best Practices - NDC Toronto - May 5,6 ...

16:30
C++ Weekly - Ep 332 - C++ Lambda vs std::function vs Function Pointer

41,063 views

3 years ago

Code Persist
How C++ took a turn for the worse

C++ is a great language to know; however, as time goes on more features are added to the language. These extra features make ...

5:03
How C++ took a turn for the worse

377,749 views

2 years ago

The Morpheus Tutorials
Modern C++ - Smart Pointer #2 - Shared Pointer

❤❤❤ Early access to tutorials, polls, live events and downloads ❤❤❤ ❤❤❤ https://www.patreon.com/user?u=5322110 ❤❤❤ ❤❤❤ Not up ...

10:49
Modern C++ - Smart Pointer #2 - Shared Pointer

3,285 views

4 years ago

Audiopedia
Smart pointer

In computer science, a smart pointer is an abstract data type that simulates a pointer while providing additional features, such as ...

7:17
Smart pointer

339 views

11 years ago

Luiz Chagas Jardim
Dumb Pointers: Understanding C++ Smart Pointers by writing our own | Part 1: Unique Pointer

References: https://sousajf1.github.io/Smart-Pointers-1-Unique-Ptr/ https://en.cppreference.com/w/cpp/memory/unique_ptr.

12:53
Dumb Pointers: Understanding C++ Smart Pointers by writing our own | Part 1: Unique Pointer

1,053 views

4 years ago

Professor Kevin Wortman
C++: std::shared_ptr (Smart Pointer)

A primer on the std::shared_ptr (shared pointer) in C++. Slides: ...

7:42
C++: std::shared_ptr (Smart Pointer)

278 views

4 years ago

C++ Weekly With Jason Turner
C++ Weekly - Ep 178 - The Important Parts of C++14 In 9 Minutes

Awesome T-Shirts! Sponsors! Books! ☟☟ C++ Best Practices - NDC Toronto - May 5,6 ...

9:16
C++ Weekly - Ep 178 - The Important Parts of C++14 In 9 Minutes

35,314 views

6 years ago

Genifinity
Master Pointers, Memory Management & Smart Pointers in C++20

Full course link: https://www.udemy.com/course/master-pointers-memory-management-smart-pointers-in-c20/?

4:09
Master Pointers, Memory Management & Smart Pointers in C++20

131 views

1 year ago

Nic Barker
Memory Arenas, Explained Simply

Learn about Memory Arenas in programming, including why and how they're used. Learning about the following terms will help ...

5:27
Memory Arenas, Explained Simply

48,783 views

1 year ago

James Raynard
Introduction to C++ Smart Pointers

Taken from my online course Modern C++: From Intermediate to Advanced which covers the C++ language at Intermediate and ...

6:00
Introduction to C++ Smart Pointers

42 views

3 years ago

cs128
0422 : std::unique_ptr vs. std::shared_ptr

So we'll go ahead and now jump into our naive implementation of a shared pointer. We'll run through the motions to come up with ...

13:04
0422 : std::unique_ptr vs. std::shared_ptr

1,697 views

4 years ago

CS Videos
CISP400 MO 6 Smart Pointers Vector of Shared pointers

In a safe way, what C++ does it permits a point management system and that essentially is called shared pointers. Of course ...

12:59
CISP400 MO 6 Smart Pointers Vector of Shared pointers

311 views

4 years ago

mycodeschool
Pointers to Pointers in C/C++

See complete series on pointers in C / C++ here: ...

9:21
Pointers to Pointers in C/C++

557,212 views

12 years ago

mCoding
The ONLY C keyword with no C++ equivalent

C has "restrict" but C++ does not. The restrict keyword in C is the only keyword that has no analogue in C++. The keyword ...

13:17
The ONLY C keyword with no C++ equivalent

338,423 views

4 years ago

cs128
0420 : Introduction to std::weak_ptr

So a center library, weak pointer is a smart pointer that acts like a shared pointer, but it doesn't participate in the shared owner ...

4:48
0420 : Introduction to std::weak_ptr

1,560 views

4 years ago

Design Patterns Lectures
The Counted Pointer Design Pattern

In this video, the Counted Pointer design pattern is explained. Counted Pointer: Count the references to an object, and delete the ...

9:49
The Counted Pointer Design Pattern

950 views

5 years ago

Luiz Chagas Jardim
Dumb Pointers 2: Shared Pointer

References: https://sousajf1.github.io/Smart-Pointers-2-Shared-Ptr/ https://en.cppreference.com/w/cpp/memory/shared_ptr.

14:58
Dumb Pointers 2: Shared Pointer

234 views

4 years ago