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 Memory Management Chatbot Project submission that was part of the Udacity C++ Nano degree curriculum
Windows desktop 2D game. A combination of classic snake with couple of whimsical features.
A simple helper type alias for std::unique_ptr and custom deleter for using pimpl idiom with std::unique_ptr easily
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 …
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.
Some painfully missing tools for Arduino projects
Single header class to handle CUDA memory safely and friendly
Various data structures and algorithms implemented using C++
Add a description, image, and links to the unique-ptr topic page so that developers can more easily learn about it.
To associate your repository with the unique-ptr topic, visit your repo's landing page and select "manage topics."