Tuesday, December 01, 2020

Facade in Java


Facade is a structural design pattern that provides a simplified (but limited) interface to a complex system of classes, library or framework.
This example uses Java

No comments:

The Strategy Design Pattern a Behavioral Pattern using C++

The Strategy Design Pattern is a behavioral design pattern that enables selecting an algorithm's implementation at runtime. Instead of i...