Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 1.21 KB

README.md

File metadata and controls

21 lines (11 loc) · 1.21 KB

SOLID Principles

SOLID principles are the software design principles that enable us to manage most of the software design problems. Robert C. Martin compiled these principles in the 1990s and SOLID acronym was first introduced by Michael Feathers.

SOLID is an acronym where

  1. S stands for Single Responsibility Principle (SRP)

  2. O stands for Open closed Principle (OCP)

  3. L stands for Liskov substitution Principle (LSP)

  4. I stands for Interface Segregation Principle (ISP)

  5. D stands for Dependency Inversion Principle (DIP)

Please click on the hyperlink of the each principle to know details about that principle.

⭐ Giving a star

If you find this repository useful, please don't forget to encouraging me to do more such stuffs by giving a star to this repository. Thank you.