Why singleton breaks open/closed principle?

北城余情 提交于 2020-05-13 03:38:41

问题


Could anyone tell me why does singleton break open/closed principle? Is it because there could be problems with inheriting from that class?


回答1:


For a class to be "open" it must be possible to inherit from it. Inheritance is an "is-a" relationship. If you inherit from a singleton-class then instances of the child-class are also instances of the parent class due to the "is-a" relationship, meaning you can suddenly have multiple instances of the singleton class.

If the singleton class inhibits inheritance, it's no longer "open".

If a singleton class allows inheritance, and is "open" for extension, then it can no longer enforce the singleton pattern.




回答2:


There are two problems with the Singleton pattern:

  • It breaks the Open/Closed Principle, because the singleton class itself is in control over the creation of its instance, while other have a hard dependency on it. This disallows the implementation to be changed by another one, without having to make sweeping changes throughout the application.
  • It breaks the Dependency Inversion Principle, because consumers will always depend directly on the concrete class to get the instance, while the DIP says that we should depend on abstractions. This causes the singleton implementation to be dragged along and disallows adding cross-cutting concerns by wrapping the implementation in a decorator or distributing the client without that singleton implementation.



回答3:


It is a common misconception that the Singleton design pattern prohibits inheritance. That is simply not true.

From the GoF book, page 127:

Use the Singleton pattern when

  • there must be exactly one instance of a class, and it must be accessible to clients from a well-known access point.
  • when the sole instance should be extensible by subclassing, and clients should be able to use an extended instance without modifying their code.

...and again on page 128:

The Singleton pattern has several benefits:

  1. Permits refinement of operations and representation. The Singleton class may be subclassed, and it's easy to configure an application with an instance of this extended class. You can configure the application with an instance of the class you need at run-time.

Page 130 goes into detail about configuring Singleton subclasses.

The answer to why Singleton breaks the OCP is that it doesn't, at least not inherently. It just happens to be most commonly implemented in violation of the OCP by developers who have not read the GoF book. The Factory Method pattern suffers much the same fate.



来源:https://stackoverflow.com/questions/36887344/why-singleton-breaks-open-closed-principle

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!