Strategies for the Allocation of Memory

/
There are a lot of different strategies for allocating memory. Programming languages like Python or Java…
RainerGrimmSmall

Improvements of this Blog

/
In my post Time for Wishes, I asked: "How can I improved my blog?" And here are the answers. Most…
allocator

Memory Management with std::allocator

/
What is common between all containers of the Standard Template Library? They have a type parameter Allocator…
overloadNewAndDelete

Overloading Operator new and delete 2

/
I overloaded in the last post operator new and delete. Therefore, finding memory leaks and getting the…
myNew

Overloading Operator new and delete 1

/
It happens quite too often that a C++ application allocates memory but doesn't deallocate it. This is…

Explicit Memory Management

/
Explicit memory management has in C++ a high complexity but also provides great functionality. Sadly,…
raii

Garbage Collection – No Thanks

/
C++ is old-fashioned. C++ has no garbage collection. No garbage collection? Right! Old fashioned? Wrong! What…
perfectForwarding1

Perfect Forwarding

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

Time for Wishes

/
I wrote more than 130 posts in my German blog about functional programming, embedded programming and…
moveAlgorithm

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.…