Search Results

2
votes

Is there a simple, elegant way to define Singletons in Python?

There are also some interesting articles on the Google Testing blog, discussing why singleton are/may be bad and are an anti-pattern: …
28
votes

What’s Alternative to Singleton

The Google Testing blog has a series of entries about avoiding Singleton (in order to create testable code). Maybe this can help you: …
1
vote

Global State and Singletons Dependency injection

If you need PlayerList outside of Game, maybe Game is the wrong class for this? If any other object needs PlayerList, either they need to have the List injected as well, or maybe you should move th …