
The Decorator Pattern
/
0 Comments
The Decorator Pattern's job is to extend an object with responsibilities dynamically. Let me, in today's…

And the Five Winners for “Template Metaprogramming with C++” are
Today, I want to present the five winners for coupons for the book "Template Metaprogramming with C++"…

The Bridge Pattern
The Bridge Pattern is a structural pattern. It decouples the interface from the implementation. In C++,…

The Adapter Pattern
The idea of the adapter pattern is straightforward: It converts the interface of a class into another…

Five Coupons for the eBook “Template Metaprogramming with C++”
I'm happy to announce that I have five giveaway eBooks for "Template Metaprogramming with C++" by Marius…

The Singleton: The Alternatives Monostate Pattern and Dependency Injection
So far, I have discussed in my previous posts the Singleton Pattern, and its pros and cons. One question…

Concepts and the Finance Industry
The finance industry is a big user of C++. But as everyone knows, C++ programmers take on a substantial…

The Singleton: Pros and Cons
I introduced in my last post "The Singleton", the classical Singleton and the so-called Meyers Singleton.…

The Singleton
The most controversial Design Pattern from the book "Design Patterns: Elements of Reusable Object-Oriented…

The Factory Method (Slicing and Ownership Semantics)
In the last installment of this blog, I introduced the Factory Method: Creational Patterns: Factory Method…