top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Java: Can we develop a singleton class without using private constructor?

0 votes
252 views
Java: Can we develop a singleton class without using private constructor?
posted Jul 14, 2017 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
0 votes

By making private constructor, we can avoid instantiating class from anywhere outside and by making class final, no other class can extend it. Why is it necessary for Util class to have private constructor and final class ?

...