in Education by

How can you create Singleton class in java?

Please log in or register to answer this question.

1 Answer

0 votes
by

How can you create Singleton class in java? 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.

Related questions

...