vote up 1 vote down star
1

Possible Duplicate:
When should you use the singleton pattern instead of a static class?

From last question that I asked came another question.

Why people prefer Singleton instead of using static class normally?

Normal static class

public static class Storage
    {
        public static string filePath { get; set; }
    }

This is the Singleton version I am using

public sealed class Singleton
    {
        private static readonly Singleton SingleInstance = new Singleton();

        private Singleton() { }

        public static Singleton Instance
        {
            get
            {
                return SingleInstance;
            }
        }
        public string filePath { get; set; }
        }

Both of them can be use anywhere in the program but singleton seem to be a lot more work.

flag

closed as exact duplicate by Martin Harris, gbjbaanb, Brian Rasmussen, Unsliced, Ferdinand Beyer Aug 20 at 10:25

7 Answers

vote up 4 vote down check

From a test point of view, there's a big difference between a static and a singleton. With a singleton you can easily change your factory to return a different singleton. With the static you will have hard reference to a the static all around and thus it will be very difficult to work around that dependency.

link|flag
vote up 1 vote down

Theres several reasons. Here is why I use Singletons:

  • they can be used with interfaces
  • they can be used as method parameters

theres also a very informative post on this here

link|flag
vote up 2 vote down

There's some things that Static classes can't do.

In .NET, a static class can't implement interfaces and you can't pass a reference to it into methods.

In ActionScript 3, for example, static classes can't fire events, so you have to use the Singleton pattern.

link|flag
vote up 3 vote down

There are number of threads on this subject at stackoverflow. Here is one - http://stackoverflow.com/questions/46541/when-should-you-use-the-singleton-pattern-instead-of-a-static-class

link|flag
vote up 0 vote down

With a singleton it's static-ness is encapsulated within the class. The class itself has control over the creation of instances, so it could return a singleton instance or different instances depending on the situation.

link|flag
vote up 0 vote down

Probably the same answer as why people are using properties instead of public variables. Properties are much more 'intelligent', you can add extra code to a singleton that you can't add to a static variable.

link|flag
vote up 0 vote down
  1. Singletons can implement an abstract class more effectively. This is important in situations where you have to implement an interface (such as a global key handler in Java) or when you want to return one of a few singletons from an abstract factory.
  2. In languages that support virtual methods: static methods can't be virtual.
  3. Allows one to encapsulate initialization of variables through a constructor.
  4. It's easier to load an instance lazily (when needed and not before).
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.