The Open Closed Principle
In this post, I continue to share what I have learned about the SOLID principles in the book “Clean Architecture A Craftsman’s Guide to Software Structure and Design”. As a recap, six principles make up the SOLID acronym:
- The Single Responsibility Principle.
- The Open Closed Principle.
- The Liskov Substitution Principle.
- The Interface Segregation Principle.
- The Dependency Inversion Principle.
In the previous post, I wrote about the Single Responsibility Principle. In this post, I write about the Open Closed Principle.
Continue reading