timeline.FunktionalEng

Functional in C++98

/
C++ is not a functional programming language, but you can program in a functional style. What are the…
ObjectOrientedGenericFunctional

Object-Oriented, Generic, and Functional Programming

/
C++ is not a functional programming language. C++ has its roots in procedural and object-oriented programming.…

Memory Pool Allocators by Jonathan Müller

/
After I have written a few posts about memory management in C++, I'm very glad to present Jonathan Müller,…
VergleichSpeicherstrategienEng

Pros and Cons of the various Memory Allocation Strategies

/
In C++ you have the choice between various memory allocation strategies. In addition to the frequently…

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…