MainMenu

Home Java Overview Maven Tutorials

Wednesday 26 April 2017

Singleton Class in Java with example



For Video Tutorial : Move on Youtube Channel


Note : Select the playlist as per your need & move with number sequence


For Video : CLICK HERE



What is singleton class ?
Singleton means one, that means you can create only one instance of a class.
If you are allowing a class to create only one instance that means class is singleton.
"Singleton" is not a keyword , it is a concept in java.
The Main purpose of he Singleton is to control object creation of a class.

In Java, a Singleton is a design pattern that restricts the instantiation of a class to one single instance. This is useful when exactly one object is needed to coordinate actions across the system. The Singleton pattern involves a single class that is responsible for creating its own instance and ensuring that only one instance is created throughout the application's lifecycle.


How it can be acheived?
By creating a static object, private constructor of class and a method with return statement for object.
Step 1. We need to create constructor as private so that we can not create an object outside of the class.
Step 2. We need to create object with static keyword.


Example :

public class Singleton {
// Private static variable to hold the single instance of the class
private static Singleton instance;

// Private constructor to prevent instantiation from outside
private Singleton() {
// Constructor code goes here
}

// Public static method to get the single instance of the class
public static Singleton getInstance() {
// Lazy initialization: create the instance if it doesn't exist yet
if (instance == null) {
instance = new Singleton();
}
return instance;
}
// Other methods of the class go here
}



Code :

public class SingletonA {
public static void main(String[] args)
{
MainSingleton obj1 = MainSingleton.getobject();
obj1.prt();
}
}
class MainSingleton
{
// static MainSingleton obj = new MainSingleton(); this object will be created when your class will be loaded.
static MainSingleton obj;
private MainSingleton()
{
System.out.println("www.way2testing.com");
}
public static MainSingleton getobject()
{
if(obj ==null)
{
obj = new MainSingleton();
}
return obj;
}
public void prt()
{
System.out.println("chandan");
}
}

Tags : Singleton class in java, what is singleton class in java, Singleton class with example

No comments:

Post a Comment