Where exactly the Singleton Pattern is used in real application?

前端 未结 12 503
囚心锁ツ
囚心锁ツ 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

    Consider the situation of AudioDriverService which is designed in Singleton Pattern. So we are allowed to create just a single instance of AudioDriverService class. Now actually your Windows Media Player or Youtube Player both will share the same object of AudioDriverService rather than creating a new instance.

提交回复
热议问题