Possible Duplicates:
Why do we need a private constructor?
Can a constructor in Java be private?
whts the use of private constructor in java?
whts the use of private constructor in java? |
|||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
One more thing you can achive is Some thing like this:
|
|||||
|
|
A private constructor allows the developer of a class to better control how this class can be instantiated, e.g. not at all (for a utility class), only internally (for a singleton) or only through factory methods. |
|||
|
|