Where exactly the Singleton Pattern is used in real application?

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

    I used a singleton (actually a couple of them) in an application that used pureMVC. We were unhappy about the complexity this framework introduced (it became complicated and tiering to track method calls through the mvc layers). So we used a central singleton as a mediator to better separate the layers from each other.

提交回复
热议问题