0 votes
in Design Patterns by

How can you create Singleton class in java?

1 Answer

0 votes
by

It is two step process. First, make the constructor private so that new operator cannot be used to instantiate the class. Return an object of the object if not null otherwise create the object and return the same via a method.

...