The Composite Pattern
/
0 Comments
The Composite Pattern allows you to compose objects into tree structures and treat the individual object…
The Decorator Pattern
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…