Single Responsibility Principle (SRP)
Definition :
A class should have only one responsibility.
Let's take an exemple that does not follow the SRP :
"Here we have a class for a promotional box of content. Here we are doing two things—we are defining box model and structure and we are defining cosmetics (colouring etc).
We can refactor this code to adhere to the SRP by splitting those two chunks of functionality into two classes:
We now have two classes which each carry a single responsibility; .island
boxes off content and .promo
applies our promotional styling. This now means that we can do things like this, which previously we couldn’t:
Previously we couldn’t have managed this as the .promo
class also carried a lot of box model; by abstracting our code into single responsibilities we can pick and choose what we want to use and where a lot more easily."
Last updated
Was this helpful?