Guide To Loose Coupling

16 Jun 2022

[ c++  design  ]

The Essence of Good Design

Loose Coupling -> Easier To Change

KISS

STUPID

Law of demeter

** Only talk to your immediate friends!

How to fix it?

SOLID vs STUPID

Let us fix it:

Dependency Injection

Polymorphysm in C++

Consider using proper abstractions for your project

Reference