0 votes
in Design Patterns by (7.4k points)

How can you create Singleton class in java?

1 Answer

0 votes
by (7.4k points)

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.

...