SOLID (object-oriented design)
In computer programming, SOLID (single responsibility, open-closed, Liskov substitution, interface segregation and dependency inversion) is a mnemonic acronym introduced by Michael Feathers for the "first five principles" named by Robert C. Martin[1][2] in the early 2000s[3] that stands for five basic principles of object-oriented programming and design. The principles, when applied together, intend to make it more likely that a programmer will create a system that is easy to maintain and extend over time.[3] The principles of SOLID are guidelines that can be applied while working on software to remove code smells by causing the programmer to refactor the software's source code until it is both legible and extensible. It is part of an overall strategy of agile and Adaptive Software Development.[3]
Overview
Initial | Stands for | Concept |
---|---|---|
S | SRP [4] |
|
O | OCP [5] |
|
L | LSP [6] |
|
I | ISP [7] |
|
D | DIP [9] |
|
See also
Basic concepts and related topics
- Adaptive Software Development
- Agile programming
- Code reuse
- Computer programming
- Object-oriented programming
Design and development principles
References
- ↑ “Principles Of OOD”, Robert C. Martin (“Uncle BOB”), butunclebob.com, Last verified 2014-07-17. (Note the reference to “the first five principles”, though the acronym is not used in this article.) Dates back to at least 2003.
- ↑ “Getting a SOLID start.”, Robert C. Martin (“Uncle Bob”), objectmentor.com. Last verified 2013-08-19.
- 1 2 3 “SOLID Object-Oriented Design”, Sandi Metz (Duke University), Talk given at the 2009 Gotham Ruby Conference in May, 2009. Last verified 2009-01-15.
- ↑ "Single Responsibility Principle" (PDF). Archived from the original (PDF) on 1 June 2015.
- ↑ "Open/Closed Principle" (PDF). Archived from the original (PDF) on 5 September 2015.
- ↑ "Liskov Substitution Principle" (PDF). Archived from the original (PDF) on 5 September 2015.
- ↑ "Interface Segregation Principle" (PDF). 1996. Archived from the original (PDF) on 5 September 2015.
- 1 2 Robert C. Martin (“Uncle Bob”) (2000), Design Principles and Design Patterns (PDF), objectmentor.com, archived from the original (PDF) on 6 September 2015, retrieved 2009-01-14
- ↑ "Dependency Inversion Principle" (PDF). Archived from the original (PDF) on 5 September 2015.