by Lars Vogel

Follow me on twitter

Lars Vogel on Google+

Design Patterns in Java - Singleton

Lars Vogel

Version 0.6

17.02.2011

Revision History
Revision 0.1 01.07.2009 Lars
Vogel
created
Revision 0.2 - 0.6 09.08.2009 - 17.02.2011 Lars
Vogel
bug fixes and enhancements

Singletons

This article describes the Design Pattern "Singleton" and its usage in the programming language Java.


Table of Contents

1. Singletons in Java
1.1. Overview
1.2. Code Example
1.3. Evaluation
2. Thank you
3. Questions and Discussion
4. Links and Literature

1. Singletons in Java

1.1. Overview

A singleton in Java is a class for which only one instance can be created provides a global point of access this instance. The singleton pattern describe how this can be archived.

Singletons are useful to provide a unique source of data or functionality to other Java Objects. For example you may use a singleton to access your data model from within your application or to define logger which the rest of the application can use.

1.2. Code Example

The possible implementation of Java depends on the version of Java you are using.

As of Java 6 you can singletons with a single-element enum type. This way is currently the best way to implement a singleton in Java 1.6 or later according to tht book ""Effective Java from Joshua Bloch.

				
package mypackage;

public enum MyEnumSingleton {
	INSTANCE;
	
	// other useful methods here
}

			

Before Java 1.6 a class which should be a singleton can be defined like the following.

				
public class Singleton {
	private static Singleton uniqInstance;

	private Singleton() {
	}

	public static synchronized Singleton getInstance() {
		if (uniqInstance == null) {
			uniqInstance = new Singleton();
		}
		return uniqInstance;
	}
	// other useful methods here
}

			

1.3. Evaluation

A static class with static method would result in the same functionality as a singleton. As singletons are define using an object orientated approach it is in general advised to work with singletons.

Singleton violate the "One Class, one responsibility" principle as they are used to manage its one instance and the functionality of the class.

A singleton cannot be subclassed as the constructor is declared private.

If you are using multiple classloaders then several instances of the singleton can get created.

2. Thank you

Thank you for practicing with this tutorial.

3. Questions and Discussion

Before posting questions, please see the vogella FAQ. If you have questions or find an error in this article please use the www.vogella.de Google Group. I have created a short list how to create good questions which might also help you.

4. Links and Literature

http://en.wikipedia.org/wiki/Design_Patterns Wikipedia Entry about the GOF Design Pattern book.