Where exactly the Singleton Pattern is used in real application?

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

    I used the singleton pattern in an online Football Team Store System. we applied the singleton pattern to a ShoppingCart class.

    You only needed one instance of the cart per an application instance. so the singleton seemed like it's the best fit for that situation.

提交回复
热议问题