Where exactly the Singleton Pattern is used in real application?

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

    I use a media player in my android app, so I extend the mediaplayer class, and used the singleton pattern because I need only one instance, and be able to call the same instance in any other part of my app for check if is playing, or what file is current playing.

    Hope it helps you, regards!!!!

提交回复
热议问题