You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
878 B
Java

/*
Singleton class means you can create only one object for the given class.
You can create a singleton class by making its constructor as private,
so that you can restrict the creation of the object.
Provide a static method to get instance of the object, wherein you can handle
the object creation inside the class only. In this example we are creating
object by using static block.
*/
public class MySingleton
{
private static MySingleton myObj;
static
{
myObj = new MySingleton();
}
private MySingleton()
{
}
public static MySingleton getInstance()
{
return myObj;
}
public void testMe()
{
System.out.println("Hey.... it is working!!!");
}
public static void main(String a[])
{
MySingleton ms = getInstance();
ms.testMe();
}
}