定义:The Singleton Pattern ensures a class has only one
instance, and provides a global point of access to it
一句话:系统里有些东西只需要一个,于是控制这个东西的constructor不能被外界访问。
用途:thread pool, dialog, caches, registry, etc.
一句话:系统里有些东西只需要一个,于是控制这个东西的constructor不能被外界访问。
用途:thread pool, dialog, caches, registry, etc.