final project in Advanced Topics in Object-Oriented Programming
-
Updated
Nov 11, 2021 - C++
final project in Advanced Topics in Object-Oriented Programming
unique reference implementation in C++ (similar to std::unique_ptr)
Punteros inteligentes del lenguaje de programación C++11, específicamente unique_ptr y shared_ptr.
A simple helper type alias for std::unique_ptr and custom deleter for using pimpl idiom with std::unique_ptr easily
A smart pointer to an object already owned by a unique_ptr. It doesn't own the object but it self zeroes when the object is deleted so that it can never dangle.
A Memory Management Chatbot Project submission that was part of the Udacity C++ Nano degree curriculum
Repositório de exercícios, práticas e estudos de Programação Orientado a Objeto.
The class template unique_ptr<T> manages a pointer to an object of type T. You will usually construct an object of this type by calling new to create an object in the unique_ptr constructor. After calling the constructor, you can use the object very much like a raw pointer. The * and -> operators work exactly like you would expect, and are very …
Various data structures and algorithms implemented using C++
Windows desktop 2D game. A combination of classic snake with couple of whimsical features.
Single header class to handle CUDA memory safely
Some painfully missing tools for Arduino projects
To associate your repository with the unique-ptr topic, visit your repo's landing page and select "manage topics."