Single responsibility principle

From Infogalactic: the planetary knowledge core
Jump to: navigation, search


The single responsibility principle states that every module or class should have responsibility over a single part of the functionality provided by the software, and that responsibility should be entirely encapsulated by the class. All its services should be narrowly aligned with that responsibility. Robert C. Martin expresses the principle as follows:[1]

* A class should have only one reason to change

History

The term was introduced by Robert C. Martin in an article by the same name as part of his Principles of Object Oriented Design,[2] made popular by his book Agile Software Development, Principles, Patterns, and Practices.[3] Martin described it as being based on the principle of cohesion, as described by Tom DeMarco in his book Structured Analysis and Systems Specification,[4] and Meilir Page-Jones in The Practical Guide to Structured Systems Design.[5]

Example

Martin defines a responsibility as a reason to change, and concludes that a class or module should have one, and only one, reason to change. As an example, consider a module that compiles and prints a report. Imagine such a module can be changed for two reasons. First, the content of the report could change. Second, the format of the report could change. These two things change for very different causes; one substantive, and one cosmetic. The single responsibility principle says that these two aspects of the problem are really two separate responsibilities, and should therefore be in separate classes or modules. It would be a bad design to couple two things that change for different reasons at different times.

The reason it is important to keep a class focused on a single concern is that it makes the class more robust. Continuing with the foregoing example, if there is a change to the report compilation process, there is greater danger that the printing code will break if it is part of the same class.

The responsibility is defined as a charge assigned to a unique actor to signify its accountabilities concerning a unique business task.[6]

See also

References

Design Principles and Design Patterns - Object Mentor Robert C.Martin

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. http://www.butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.