3

If a class implements a singleton pattern, should all the variables be declared static?

Is there any reason they shouldn't be declared static? Does it make a difference?

8
  • 1
    Firstly, have you considered not using Singleton Pattern at all? It is well known as a anti-pattern in object-oriented programming. Commented Nov 20, 2009 at 0:44
  • 4
    I've never agreed that the singleton pattern is a bad one. Using it as a 'god' object is not a good idea, but it has its place. Commented Nov 20, 2009 at 0:45
  • There are very few places where a singleton makes good sense -- string externalization is about the only one I see with any regularity, and even then, most popular platforms today provide libraries or language features that better encapsulate that use-case. Commented Nov 20, 2009 at 0:51
  • 1
    In many SOA applications, singletons are very prevalent -- though they may be "behind the scenes". Commented Nov 20, 2009 at 0:59
  • Well, you may find bad references about singletons here (code.google.com/p/google-singleton-detector/wiki/…) and here (stackoverflow.com/questions/137975/…). Commented Nov 20, 2009 at 1:23

5 Answers 5

12

No. The singleton pattern just means that a single instance is the only instance -- it does not mean "make everything statically accessible".

The singleton pattern gives you all the benefits of a "single instance", without sacrificing the ability to test and refactor your code.

Edit:

The point I'm trying to make is that there is a difference between how functionality should be consumed (which depends on context), and how functionality should be initialized.

It may be appropriate that in most cases your object will only ever have a single instance (for example, in your final production system). But there are also other contexts (like testing) that are made much more difficult if you force it to be the only choice.

Also, making something static has more significant implications than just "only one instance of my class should be accessible" -- which is usually the intention.

Further, in software I've worked on, the initialization and lifecycle of objects is often controlled by someone else (I'm talking about DI here) -- and making something static really doesn't help here.

Sign up to request clarification or add additional context in comments.

2 Comments

Strictly speaking the singleton pattern allows you to limit the number of instances so it may be zero or more (zero if it is lazily intialized). It is common for it to be one. If you were to ever want it to be 2 or more making things static would make it harder.
@TofuBeer, surely it wouldn't be a singleton if you were allowed two. Wouldn't that be a doubleton? :-)
4

In one common singleton pattern, you do not use statics. You code the class to use ordinary fields, you initialize in the constructor, and then you arrange to execute new MyClass() once, storing the results in some static place.

Comments

3

No, the only thing that is usually static is the reference to the singleton itself (and there are other ways to store that reference, too, such as JNDI or dependency injection containers).

The reason for not declaring fields as static (even though in a singleton pattern you will need only one instance of them) is that this gives you the flexibility to create another, slightly different instance of the normally singleton class. You may want to do that in special situations, such as for testing.

Even if you do not (think you) need that flexibility, there is no reason to give it up. Declaring a field as static has no benefits that you would lose.

1 Comment

+1 for provide single instance access where appropriate, without giving up the benefits of "multiple instance", which is what happens when you make everything static.
1

You can do this (not necessarily should). But, even for a singleton, I tend to make all the variables object-level rather than class-level because:

  • I may at some point decide a singleton was a bad idea for that class and having class-level variables will make refactoring harder.
  • With object-level variables, they only come into existence when you instantiate the singleton. With class-level, they're always there.

Bottom line: I've never been able to think of a disadvantage to having them as object-level so that's how I do it. The above two disadvantages to class-level may be minuscule but they're there. It probably comes down to personal preference in the end.

1 Comment

+1. Technically static fields are not "always there" - they "come into existence" when class is loaded.
0

You can read up on how (one possible way) to create a singleton in Java here:

Wikibooks Design Patterns: Java Singleton

Basically you don't need (nor should) make all things in the class static just because you intend to use something as a singleton. There are several reasons

  • Check answers from paxdiablo and Thilo
  • Also don't forget make it all static doesn't make it a singleton you would also need to remove every constructor (and make the default constructor private)

1 Comment

I don't know if it is necessary to make all constructors private. You can use the singleton pattern without enforcing that there can never be other uses for the class. Also, publicly visible constructors play nice with DI and such.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.