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.
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.
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");
}
}