Sunday, July 12, 2009

Singleton Class in Java

What is Singleton ?

Many times we face situations in which we need to model an entity which can have only one Live instance at a time. Speaking in technical terms, we need to create a class which can be instantiated only once i.e. only one object can be created of that class during the scope of the entire application. Examples can be an instance of a Printer which can be used by many clients to print any document. But since we have only printer, so we must not allow the user/client to create more than one instance of the Printer class. Rather all of them must use the same instance in an synchronized manner.

A more common example could be a handle to the Database Connection Pool. We must have only 1 instance of the Pool Manager, which in turn can allocate database connections from the common pool of connections and can put them back after they are used. Having more than 1 instance of the Pool Manager can result in problems, which can be really difficult to debug.

Lets see how to make a Java Class that can be used as a Singleton

Method 1

Inside your class, keep a count of how many instances have been created so far in a static variable. Now, you can throw an Exception in your constructor, the moment a client tries to create more than one instance. Example code given below:

pic2

Method 2

Make your class’ constructor Private and keep another private instance variable which can call the constructor. Create a public getter function for the retrieving the singleton object as shown below:

pic1

One problem with this approach is that one can use Reflection API to invoke the private constructor and thus the whole concept of Singleton class is violated as shown below:

pic3

This can be overcome by throwing an exception in the MySingleton constructor when it is called more than once (as we have done in first Method)

Another Caveat

Can you think of any more way the above code can be broken? By breaking, I mean can you create two instances of the above class.

Hint: Serialization !!

Answer: If your class implements Serializable interface or inherits some class which implements this interface, then this code can be broken by first serializing the object (saving the state of the object to some file) and then de-serializing it (retrieving back the original state). If we do not override readResolve() method as shown below:

pic4

To the best of my knowledge, now I think there is no way you can create another object with all these checks implemented. Please feel free to comment & discuss this and point out any problems with above mentioned techniques.

5 comments:

Unknown said...

Hi Agraj,

I have started reading your blogs and I thought its interesting and knowledgeable too. Keep posting regularly.

Thanks,
Mahesh

Unknown said...

Hey Mahesh,

Thanks for your feedback. It really matters :-)

Regards,
Agraj

Unknown said...

hey Agraj...

This things really make difference in someones working or knowledgeable life. so plz keep doing it cnt..
its to good.....

Anonymous said...

hey, I have started working on Android project. Have you had any experience why I shouldn't use singleton class technique in my program?

Unknown said...

@Anubhav
I do not have much experience with Android but Singletons are generally used when you implement an object factory and control the creation of objects as per your need. Some examples can be a Resource Manager/Task Manager, whose instance should be unique. So choose wisely where you want to implement this pattern and do not overuse it. Thanks !!