Possible Duplicate:
What is the use of making constructor private in a class?
where do we need private constructor? how can we instantiate a class having private constructor ?
where do we need private constructor? how can we instantiate a class having private constructor ? |
|||||||
|
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.
|
Private constructor means a user can not directly instantiate a class. Instead, you can create objects using something like the Named Constructor Idiom, where you have The Named Constructor Idiom is for more intuitive usage of a class. The example provided at the C++ FAQ is for a class that can be used to represent multiple coordinate systems. This is pulled directly from the link. It is a class representing points in different coordinate systems, but it can used to represent both Rectangular and Polar coordinate points, so to make it more intuitive for the user, different functions are used to represent what coordinate system the returned
There have been a lot of other responses that also fit the spirit of why private constructors are ever used in C++ (Singleton pattern among them). Another thing you can do with it is to prevent inheritance of your class, since derived classes won't be able to access your class' constructor. Of course, in this situation you still need a function that creates instances of the class. |
|||||||||||
|
|
One common use is in the singleton pattern where you want only one instance of the class to exist. In that case, you can provide a |
|||||
|
|
It is reasonable to make constructor private if there are other methods that can produce instances. Obvious examples are patterns Singleton (every call return the same instance) and Factory (every call usually create new instance). |
|||
|
|
|
private constructor are useful when you don't want your class to be instantiated by user. To instantiate such classes, you need to declare a static method, which does the 'new' and returns the pointer. A class with private ctors can not be put in the STL containers, as they require a copy ctor. |
|||
|
|
|
It's common when you want to implement a singleton. The class can have a static "factory method" that checks if the class has already been instantiated, and calls the constructor if it hasn't. |
|||
|
|
|
For example, you can invoke a private constructor inside a friend class or a friend function. Singleton pattern usually uses it to make sure that nobody creates more instances of the intended type. |
|||
|
|
|
One common use is for template-typedef workaround classes like following:
Obviously a public non-implemented constructor would work aswell, but a private construtor raises a compile time error instead of a link time error, if anyone tries to instatiate |
|||
|
|