Singleton Pattern
Singleton Pattern
SingleObject.java
Step 2
Get the only object from the singleton class.
SingletonPatternDemo.java
//illegal construct
//Compile Time Error: The constructor SingleObject() is not visible
//SingleObject object = new SingleObject();
Output
Hello World!