How do you define a Single Responsibility?

前端 未结 13 1949
醉酒成梦
醉酒成梦 2021-01-30 09:23

I know about \"class having a single reason to change\". Now, what is that exactly? Are there some smells/signs that could tell that class does not have a single responsibility?

13条回答
  •  半阙折子戏
    2021-01-30 09:24

    Write a brief, but accurate description of what the class does.

    If the description contains the word "and" then it needs to be split.

提交回复
热议问题