Posts


std::unique_ptr
According to the RAII idiom, a std::unique_ptr manages automatically and exclusively the lifetime of…

Memory and Performance Overhead of Smart Pointers
C++11 offers four different smart pointers. I will have a closer look in this post regarding memory and…

Careful Handling of Resources
The careful handling of resources - may it be, for example, memory, files, or sockets - is a key concern…