Where exactly the Singleton Pattern is used in real application?

前端 未结 12 519
囚心锁ツ
囚心锁ツ 2021-01-30 06:35

I was just curious where exactly the singleton pattern is used... I know how the pattern works and where it can be used but i personally never used in any real application. Can

12条回答
  •  遇见更好的自我
    2021-01-30 07:19

    Singleton Class is basically used when you have to allow only single instantiation of the class. Taking real world example, In case of OOP designing of a library, we can create library class as singleton class.

提交回复
热议问题