
Perfect Forwarding
/
0 Comments
Today, we solve " ... a herefore unsolved problem in C++" (Bjarne Stroustrup). To make the long story…

Time for Wishes
I wrote more than 130 posts in my German blog about functional programming, embedded programming and…

Move Semantis: Two Nice Properties
I will talk about two nice properties of the move semantic in this post that is not so often mentioned.…

Copy versus Move Semantics: A few Numbers
A lot was written about the advantages of move semantics to copy semantics. Instead of an expensive copy…

std::array – Dynamic Memory, no Thanks
std::array combines the best of two worlds. On the one hand, std::array has the size and efficiency of…

Automatic Memory Management of the STL Containers
One of the significant advantages of a C++ string to a C string and of a std::vector to a C array is…

std::weak_ptr
std::unique_ptr models the concept of exclusive ownership, std::shared_ptr the concept of shared ownership.…

Specialities of std::shared_ptr
After I draw the big picture of a std::shared_ptr in the last post, I want to present two special aspects…

std::shared_ptr
std::shared_ptr's share the resource. The shared reference counter counts the number of owners. Copying…

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…