Tagged Questions

The singleton is a design pattern to ensure that exactly one application-wide instance of a particular class exists (optionally with additional features such as thread-safe intialization, or some form of initialization order). Singletons are arguably the most well-known, the most used, the most abused, and the most disputed design pattern in existence, frequently leading to heated discussions between its proponents and opponents.

learn more… | top users | synonyms (1)

211
votes
38answers
17k views

What is so bad about Singletons?

The Singleton pattern is a fully paid up member of the GoF Patterns Book but lately seems rather orphaned by the developer world. I still use quite a lot of singletons, especially for Factory classes, ...
161
votes
21answers
78k views

What does your Objective-C singleton look like?

My singleton accessor method is merely: static MyClass *gInstance = NULL; + (MyClass *)instance { @synchronized(self) { if (gInstance == NULL) gInstance = [[self alloc] ...
133
votes
13answers
25k views

Difference between static class and singleton pattern?

What real (i.e. practical) difference exist between a static class and a singleton pattern? Both can be invoked without instantiation, both provide only with one "instance" and neither of them is ...
73
votes
17answers
29k views

Efficient way to implement singleton pattern in Java

Efficient way to implement singleton pattern in Java?
70
votes
21answers
11k views

Singleton: How should it be used

Edit: From another question I provided an answer that has links to a lot of questions/answers about singeltons: More info about singletons here: So I have read the thread Singletons: good design ...
70
votes
8answers
17k views

Is the C# static constructor thread safe?

In other words, is this Singleton implementation thread safe: public class Singleton { private static Singleton instance; private Singleton() { } static Singleton() { ...
65
votes
19answers
14k views

On Design Patterns: When to use the Singleton?

The glorified global variable - becomes a gloried global class. Some say breaking Object Oriented Design. Give me scenarios, other than the good old logger where it makes sense to use the singleton.
52
votes
15answers
18k views

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

There seem to be many ways to define Singletons in python. I was wondering if there is a consensus opinion on StackOverflow.
47
votes
4answers
9k views

Simplest/Cleanest way to implement singleton in JavaScript?

What is the simplest/cleanest way to implement singleton pattern in JavaScript?
46
votes
24answers
6k views

Singletons: good design or a crutch?

Singletons are a hotly debated design pattern, so I am interested in what the Stack Overflow community thought about them. Please provide reasons for your opinions, not just "Singletons are for lazy ...
42
votes
1answer
4k views

class << self idiom in Ruby

I suppose my question is exactly what the subject depicts, what does: class << self do in Ruby?
42
votes
16answers
4k views

Are there any viable alternatives to the GOF Singleton Pattern?

Let's face it. The Singleton Pattern is highly controversial topic with hordes programmers on both sides of the fence. There are those who feel like the Singleton is nothing more then a glorified ...
41
votes
9answers
2k views

Is it a good practice to have logger as a singleton?

I had a habit to pass logger to constructor, like: public class OrderService : IOrderService { public OrderService(ILogger logger) { } } But that is quite annoying, so I've used it a ...
39
votes
12answers
5k views

What's Alternative to Singleton

We have a class that holds configuration information for the application. It used to be a singleton. After some architectural review, we were told to remove the singleton. We did see some benefits of ...
32
votes
7answers
5k views

Problems with Singleton Pattern

I've been reading about Singleton pattern for last few days. The general perception is that the scenarios where it is required are quite few (if not rare) probably because it has its own set of ...
31
votes
9answers
13k views

Global or Singleton for database connection?

What is the benefit of using singleton instead of global for database connections in PHP? I feel using singleton instead of global makes the code unnecessarily complex. Code with Global $conn = new ...
30
votes
1answer
4k views

Singleton by Jon Skeet clarification

public sealed class Singleton { Singleton() { } public static Singleton Instance { get { return Nested.instance; } } class Nested ...
24
votes
3answers
4k views

Singleton Per Call Context (Web Request) in Unity

A few days ago I had this issue with ASP.Net threading. I wanted to have a singleton object per web request. I actually need this for my unit of work. I wanted to instantiate a unit of work per web ...
24
votes
10answers
7k views

Python: single instance of program

Is there a Pythonic way to have only one instance of a program running? The only reasonable solution I've come up with is trying to run it as a server on some port, then second program trying to ...
22
votes
10answers
1k views

Who needs singletons? [closed]

Imagine you access your MySQL database via PDO. You got some functions, and in these functions, you need to access the database. The first thing I thought of is global, like: $db = new ...
21
votes
9answers
2k views

Yeah.. I know.. I'm a simpleton.. So what's a Singleton?

I've tried a few times to understand what a Singleton is. Perhaps I'm just too visual.. so can anyone break it down in a simple analogy. Similar Posts: ...
19
votes
4answers
18k views

What is the best approach for using an Enum as a singleton in Java?

Building on what has been written in SO question Best Singleton Implementation In Java and specifically talking about using enum to create a singleton, what are the differences/pros/cons between ...
17
votes
12answers
669 views

why are there java singleton classes? When would you need to use one

I understand that a singleton class is one where there can be only one instantiation, but I don't understand why this would be useful. Why won't you just create a class with static variables and ...
17
votes
8answers
2k views

The need for volatile modifier in double checked locking in .NET

Multiple texts say that when implementing double-checked locking in .NET the field you are locking on should have volatile modifier applied. But why exactly? Considering the following example: public ...
16
votes
5answers
806 views

Is this design of Spring singleton beans thread safe?

Consider the following Spring Service class. The spring scope defined is Singleton. The two service beans auto-wired as fields in the class below have similar structure - they too are composed of ...
16
votes
8answers
709 views

When should the Singleton pattern NOT be used? (Besides the obvious)

I know well that you want to use Singleton to provide a global point of access to some state or service. The benefits of the Singleton pattern do not need to be enumerated in this question. What I am ...
16
votes
9answers
1k views

Purpose of singletons in programming

This is admittedly a rather loose question. My current understanding of singletons is that they are a class that you set up in such a way that only one instance is ever created. This sounds a lot ...
16
votes
12answers
4k views

Are Singletons really that bad?

It's understandable that many design patterns can in some cases be abused, and like mom always said: "Too much of a good thing isn't always good!" I'm noticing that these days, I'm using Singletons a ...
16
votes
4answers
4k views

Monostate vs. Singleton

What are the scenarios when one would use a Monostate pattern instead of singleton inorder to maintain a global object? Edit: I know what Singleton and Monostate patterns are. Have also implemented ...
15
votes
7answers
1k views

Creating a singleton in python

This question is not for the discussion of whether or not the Singleton design pattern is desirable, is an anti-pattern, or for any religious wars, but to discuss how this pattern is best implemented ...
15
votes
4answers
340 views

How to log in Scala *without* a reference to the logger in *every instance*?

I've looked at example of logging in Scala, and it usually looks like this: import org.slf4j.LoggerFactory trait Loggable { private lazy val logger = LoggerFactory.getLogger(getClass) protected ...
15
votes
6answers
754 views

Good OO design - The Singleton Design Pattern

All of a sudden I'm having a bit of an OO crisis. Over the last couple of years I've made quite good use of Singleton objects. I used them in many places. For example, in designing an MVC Java ...
15
votes
4answers
3k views

Why is the Borg pattern better than the Singleton pattern in Python

Why is the Borg pattern better than the Singleton pattern? I ask because I don't see them resulting in anything different. Borg: class Borg: __shared_state = {} # init internal state variables ...
15
votes
4answers
25k views

Python and the Singleton Pattern [closed]

Possible Duplicate: Is there a simple, elegant way to define Singletons in Python? What is the best way to implement the singleton pattern in Python? It seems impossible to declare the ...
15
votes
10answers
11k views

Thread safe lazy construction of a singleton in C++

Is there a way to implement a singleton object in C++ that is: Lazily constructed in a thread safe manner (two threads might simultaneously be the first user of the singleton - it should still only ...
14
votes
9answers
343 views

Singleton instantiation

Below show is the creation on the singleton object. public class Map_en_US extends mapTree { private static Map_en_US m_instance; private Map_en_US() {} static{ m_instance = ...
14
votes
6answers
1k views

An obvious singleton implementation for .NET?

I was thinking about the classic issue of lazy singleton initialization - the whole matter of the inefficiency of: if (instance == null) { instance = new Foo(); } return instance; Anyone who ...
14
votes
10answers
6k views

Singleton Destructors

Should Singleton objects that don't use instance/reference counters be considered memory leaks in C++? Without a counter that calls for explicit deletion of the singleton instance when the count is ...
13
votes
8answers
749 views

Is it possible to apply inheritance to a Singleton class?

Today I faced one question in interview. Is it possible to apply inheritance concept on Singleton Classes? I said since the constructor is private, we cannot extend that Singleton class. Next thing ...
13
votes
8answers
2k views

How should I refactor my code to remove unnecessary singletons?

I was confused when I first started to see anti-singleton commentary. I have used the singleton pattern in some recent projects, and it was working out beautifully. So much so, in fact, that I have ...
13
votes
10answers
3k views

What Are Some Examples of Design Pattern Implementations Using JavaScript?

I'm a moderately skilled programmer using JavaScript but I am no guru. I know you can do some pretty powerful things with it, I just haven't seen much other than fairly basic DOM manipulation. I'm ...
12
votes
4answers
223 views

Can I define an abstract class for all derived Singletons in this way?

This is my abstract class which must be derived each time I want to make a Singleton: public abstract class Singleton<T> where T : Singleton<T> { private static readonly Lazy<T> ...
12
votes
1answer
1k views

How do I implement an Objective-C singleton that is compatible with ARC?

How do I convert (or create) a singleton class that compiles and behaves correctly when using automatic reference counting (ARC) in Xcode 4.2?
12
votes
4answers
808 views

get_instance() in Codeigniter: Why assign it to a variable?

In Codeigniter, get_instance() is a globally available function that returns the Controller super-object which contains all the currently loaded classes (it returns the Controller class instance). ...
12
votes
1answer
179 views

Which guarantees do Scala's singletons have regarding serialization?

Is it safe by default, like Java's single-element-enum pattern or is it e. g. necessary to define readResolve or similar methods somewhere to prevent accidental or malicious breakage of the singleton ...
12
votes
3answers
652 views

Dependency-injection in real life

I am building a really minimal MVC framework to increase my PHP knowledge and challenge myself. I've come to the point where Classes begin to be dependent on each other to work. Dependency injection ...
12
votes
6answers
1k views

Singleton and Exception

Whats the best way to design a singleton class that could throw an exception? Here I have a Singleton (using Bill Pugh's method, documented in Wiki for Singleton). private static class ...
12
votes
8answers
6k views

C++ singleton vs. global static object

A friend of mine today asked me why should he prefer use of singleton over global static object? The way I started it to explain was that the singleton can have state vs. static global object ...
12
votes
10answers
7k views

Singleton with Arguments in Java

I was reading the Singleton article on Wikipedia and I came across this example: public class Singleton { // Private constructor prevents instantiation from other classes private Singleton() ...
12
votes
5answers
973 views

Singleton for Application Configuration

Hi In all my projects till now, I use to use singleton pattern to access Application configuration throughout the application. Lately I see lot of articles taking about not to use singleton pattern , ...

1 2 3 4 5 34