ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

2,480 results

cpponsea
Smart Pointers in C++ - Khushboo Verma - C++ on Sea 2025

https://cpponsea.uk​ --- Smart Pointers in C++ - Khushboo Verma - C++ on Sea 2025 --- C++ smart pointers promise to make ...

53:02
Smart Pointers in C++ - Khushboo Verma - C++ on Sea 2025

3,423 views

3 months ago

CodeLucky
C++ Smart Pointers: Modern Memory Management for Beginners

Master C++ memory management with smart pointers! This beginner-friendly guide covers unique_ptr, shared_ptr, and weak_ptr, ...

9:33
C++ Smart Pointers: Modern Memory Management for Beginners

131 views

9 months ago

enigma tutorials
Unreal Pointers - Garbage Collection, Smart Pointers, Class Ptr, and Soft Pointers - UE C++ Tutorial

Here we explore the various different types of pointers you can use in the Unreal Engine. Unreal engine combines a garbage ...

18:09
Unreal Pointers - Garbage Collection, Smart Pointers, Class Ptr, and Soft Pointers - UE C++ Tutorial

2,530 views

5 months ago

vlogommentary
Using Arrays as Smart Pointers in C: Pros and Cons

Learn why using arrays as smart pointers in C might not be the best approach, and understand modern best practices for memory ...

3:14
Using Arrays as Smart Pointers in C: Pros and Cons

0 views

1 month ago

Automatic Addison
How to Use Memory Management and Smart Pointers in C++

In this video, I'll guide you through memory management in C++ using both traditional methods like malloc and modern tools like ...

12:14
How to Use Memory Management and Smart Pointers in C++

257 views

9 months ago

CppNow
Lightning Talk: I Now Maybe Understand C++ Hazard Pointers - Denis Yaroshevskiy - C++Now 2025

https://www.cppnow.org --- Lightning Talk: I Now Maybe Understand C++ Hazard Pointers - Denis Yaroshevskiy - C++Now 2025 ...

5:42
Lightning Talk: I Now Maybe Understand C++ Hazard Pointers - Denis Yaroshevskiy - C++Now 2025

2,578 views

1 month ago

vlogize
How to Pass a Smart Pointer in a Method without Deleting It

Discover effective methods for passing smart pointers in C++ while preventing unwanted deletes and pointer issues. --- This video ...

2:02
How to Pass a Smart Pointer in a Method without Deleting It

1 view

9 months ago

Alaa Okasha
Pointers, Smart Pointers, Virtual Functions, Slicing
1:13:48
Pointers, Smart Pointers, Virtual Functions, Slicing

1,587 views

2 weeks ago

C++ tips and tricks
Master smart pointers in C++ with 4 simple steps.

In this video, you'll learn the general concept of smart pointers along with the different types: ...

8:46
Master smart pointers in C++ with 4 simple steps.

874 views

9 months ago

CodeLucky
C++ Dynamic Memory Management: New, Delete & Smart Pointers Explained!

Learn C++ dynamic memory management from scratch! This tutorial covers everything you need to know about allocating and ...

13:53
C++ Dynamic Memory Management: New, Delete & Smart Pointers Explained!

207 views

9 months ago

Coding Shoding
Smart Pointers in C++ | Unique, Shared & Weak Pointers Explained

In this video, we'll learn about Smart Pointers in C++, one of the most powerful features introduced in C++11 for automatic memory ...

7:42
Smart Pointers in C++ | Unique, Shared & Weak Pointers Explained

58 views

2 months ago

Code 4 Thought
2/10 Data Types and the world of (smart) pointers

In the beginnings were...data and data types. Which is where we begin our journey through C++. The language provides for a ...

35:30
2/10 Data Types and the world of (smart) pointers

43 views

11 months ago

Aleksandar Haber PhD
Learn Modern C++: Smart Pointer unique_ptr

Instead, programs and programmers are encouraged to use smart pointers. - A smart pointer is a class template that is declared ...

31:00
Learn Modern C++: Smart Pointer unique_ptr

655 views

5 months ago

Mackenzie Amador-Leon
Assignment  Smart Pointers (C++)
0:53
Assignment Smart Pointers (C++)

0 views

5 months ago

Selected Topics in IT
C++ 79: Smart Pointer: What is unique_ptr in C++? A Smarter Way to Use new

std::unique_ptr is a smart pointer from the C++ Standard Library. It owns the object you give it — and when the unique_ptr goes ...

7:11
C++ 79: Smart Pointer: What is unique_ptr in C++? A Smarter Way to Use new

14 views

7 months ago

pillowmath
Smart Pointers in C++

Smart pointers in C++ are designed specifically to manage ownership of heap-allocated memory, not all pointers. Raw pointers ...

10:12
Smart Pointers in C++

3 views

2 months ago

UncomplicatingTech
Unique Pointers in C++ | Learn C++ Smart Pointers

Introduction to Pointers: https://youtu.be/8deAi9VRYEw Memory Management in C++: https://youtu.be/SZVWlhQ8ihU C++ playlist: ...

5:18
Unique Pointers in C++ | Learn C++ Smart Pointers

173 views

10 months ago

vlogize
How to Create a smart pointer from 'this' in C+ +

This class allows an object to be shared among multiple pointers while ensuring that it's only deleted when all smart pointers to it ...

1:29
How to Create a smart pointer from 'this' in C+ +

1 view

5 months ago

vlogize
Understanding Smart Pointers: What Happens When Raw Pointers Go Out of Scope?

Explore the relationship between raw pointers and smart pointers in C++. Learn about memory management and scope with ...

1:26
Understanding Smart Pointers: What Happens When Raw Pointers Go Out of Scope?

1 view

10 months ago

Erarnitox
Smart Pointers in C++

Manual memory management can be hard and error pron. In this video we take a look at how to utilize smart pointers to do the ...

11:08
Smart Pointers in C++

467 views

5 months ago

Computer Engineering life
smart pointers to avoid memory leaks: UNIQUE pointer (unique_ptr) in C++

IMPORTANT: make sure to include: "#include memory" (with arrows) in the preprocessor directives area Just the basics!

4:57
smart pointers to avoid memory leaks: UNIQUE pointer (unique_ptr) in C++

22 views

6 months ago

Sowmya's Tech Talks
Advanced C++ Master in Smart Pointer   Unique Pointer

Learn C++ Smart Pointers in depth with real examples. In this tutorial, we explain unique_ptr, shared_ptr, weak_ptr, and why they ...

18:30
Advanced C++ Master in Smart Pointer Unique Pointer

17 views

5 months ago

Dushyant
RAII: I made my own Smart Pointer

Ho ho ho, Merry coding! Welcome to the third episode of Learn C++ With Me, where today we are on a mission to help Santa ...

25:40
RAII: I made my own Smart Pointer

46 views

1 month ago

Pojobox Tech Tutorials
Curso de C++ desde Cero a Avanzado | Clase 30: Smart Pointers en C++

Clase 30: Smart Pointers en C++ (unique_ptr, shared_ptr, weak_ptr) En esta clase aprenderás cómo usar punteros inteligentes ...

13:29
Curso de C++ desde Cero a Avanzado | Clase 30: Smart Pointers en C++

71 views

5 months ago

UncomplicatingTech
Weak Pointers Made Simple: Avoid Shared Pointer Traps in C++

We'll walk through clear explanations, real-world examples, and best practices to help you master smart pointers with confidence.

4:25
Weak Pointers Made Simple: Avoid Shared Pointer Traps in C++

777 views

9 months ago