class Demo1
{
private Demo1()
{
System.out.println(" from demo 1 ");
}
static Demo1 a=new Demo1();
public static Demo1 getInstance()
{
return a;
}
}
public class SingletonExampl
{
public static void main(String[] args)
{
Demo1 b=Demo1.getInstance();
}
}