ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

843 results

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

130 views

9 months 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++

249 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,493 views

5 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,567 views

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

871 views

9 months ago

Last Mile Developer
Beyond Syntax: A Guide to Modern C++ Philosophy

The talk advocates for abandoning raw pointers in favor of an ownership model using RAII and smart pointers, leading to the ...

9:43
Beyond Syntax: A Guide to Modern C++ Philosophy

133 views

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

205 views

9 months ago

Faisal's Devlog
This is why you don't build GUIs in C

C and GUI Programming don't get along well. In this video, I used a lesser-known framework for Graphical User Interface (GUI) ...

6:09
This is why you don't build GUIs in C

352,421 views

6 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

170 views

9 months ago

CppNuts
Write Your Own Unique Pointer Class In C++

This tutorial will help you master smart pointers, dynamic memory management, and move semantics in modern C++. In this video ...

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

1,497 views

4 months ago

DeepDiveDev
Pointer VS Reference — What's the Difference?

The difference between pointers and references My Memory Mananagement Series: ...

6:35
Pointer VS Reference — What's the Difference?

283 views

6 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

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

2 views

2 months 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++

68 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

The Debug Zone
Using Boost Container Vector with Smart Pointers for Memory Management

In this video, we delve into the powerful combination of Boost Container Vector and smart pointers to enhance memory ...

7:44
Using Boost Container Vector with Smart Pointers for Memory Management

9 views

6 months ago

ByteClocker
C++ const Pointer vs Pointer to const – Simple Hack to Never Confuse Them Again!

C++ const pointers vs pointer to const – what's the difference? If you've ever been confused about when to use const int*, int* ...

11:39
C++ const Pointer vs Pointer to const – Simple Hack to Never Confuse Them Again!

126 views

10 months ago

Last Mile Developer
Smart Pointers vs. Observer: Navigating the C++ Design Trade-off Between Safety and Efficiency

For more checkout https://cpp.rougeneuron.in This video focuses on the core debate in modern C++ regarding memory ...

19:36
Smart Pointers vs. Observer: Navigating the C++ Design Trade-off Between Safety and Efficiency

522 views

2 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

16 views

4 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++

761 views

9 months ago

CppNuts
Write Your Own Shared Pointer Class In C++

... pointer in c++ write your own shared pointer c++ c++ memory management tutorial c++ smart pointers explained difference ...

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

1,827 views

4 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++

460 views

5 months ago

Sowmya's Tech Talks
C++ Smart Pointers Explained | unique_ptr, shared_ptr, weak_ptr | Modern C++ Tutorial

cpp #cppprogramming #cppprogramminglanguage #cplusplus #cplusplusprogramming #cplusplustutorial In this C++ Smart ...

9:29
C++ Smart Pointers Explained | unique_ptr, shared_ptr, weak_ptr | Modern C++ Tutorial

61 views

2 months ago

ByteClocker
C++ Pointers Explained Visually - Learn with a Debugger & Watch Window

In this video, we take a practical approach to C++ pointers by using a debugger to visualize memory changes. Learn how pointers ...

14:41
C++ Pointers Explained Visually - Learn with a Debugger & Watch Window

553 views

10 months ago