英文:
How many singleton classes can we use in one android app?
问题
我想知道在安卓应用中是否可以使用多个单例类。这是否可能?所得到的所有答案都是关于单例类的实例,但那不是我的问题。
英文:
I want to know if I can use multiple singleton classes in an android app. Is it possible?
All of the answers I'm getting are about singleton class instance but that is not my question.
答案1
得分: 2
你可以使用任意数量的单例模式。
单例模式只是一种设计模式:
https://zh.wikipedia.org/wiki/单例模式
英文:
You can use as many singeltons as you like.
Singleton is just a pattern:
https://en.wikipedia.org/wiki/Singleton_pattern
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论