Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can a constructor be private? How is a private constructor useful?

share|improve this question
1  
It should be noted that most answers given so far only consider the case of having only private constructors. You can have public and private constructors in the same class, for purposes explained in Michael Aaron Safyan's answer. – Christian Semrau May 12 '10 at 6:06

12 Answers

Yes, a constructor can be private. There are different uses of this. One such use is for the singleton design anti-pattern, which I would advise against you using. Another, more legitimate use, is in delegating constructors; you can have one constructor that takes lots of different options that is really an implementation detail, so you make it private, but then your remaining constructors delegate to it.

As an example of delegating constructors, the following class allows you to save a value and a type, but it only lets you do it for a subset of types, so making the general constructor private is needed to ensure that only the permitted types are used. The common private constructor helps code reuse.

public class MyClass
{
     public MyClass(int x){
         this(Integer.toString(x),"int");
     }

     public MyClass(boolean x){
         this(Boolean.toString(x),"boolean");
     }

     private MyClass(String value, String type){
         _value = value;
         _type = type;
     }

     public String toString(){
         return _value;
     }

     public String getType(){
         return _type;
     }

     private String _value;
     private String _type;
}
share|improve this answer
4  
What's wrong with singletons? – sparkleshy May 12 '10 at 5:25
3  
from a testability point of view - they represent a global state, which is hard to predict (and test) – Bozho May 12 '10 at 5:38
8  
@Vuntic, the short answer is that singletons result in shared mutable state and, more importantly, baking the singleton-ness into the API makes it inflexible, makes it hard to test, and makes things like hell when it turns out that the singleton assumption is not correct. While it is fine to have singletons in the sense that you only instantiate the object once, enforcing singleton-ness via private constructor and static instantiation function leads to an incredibly messy and fragile design. A better approach is to pass around the interface that the singleton conforms to... – Michael Aaron Safyan May 12 '10 at 5:43
2  
... and to construct only one instance of it, and then pass it around. This approach is known as dependency injection, and leads to cleaner, more flexible designs. – Michael Aaron Safyan May 12 '10 at 5:43
3  
The real anti-pattern here is overusage imho. This applies to any pattern that is used out of habit without giving thought to what is best in the given situation. – rsp May 12 '10 at 13:43
show 3 more comments

I expected that someone would've mentioned this (the 2nd point), but.. there are three uses of private constructors:

  • to prevent instantiation outside of the object, in the following cases:

    • singleton
    • factory method
    • static-methods-only (utility) class
    • constants-only class
      .
  • to prevent sublcassing (extending). If you make only a private constructor, no class can extend your class, because it can't call the super() constructor. This is some kind of a synonym for final

  • overloaded constructors - as a result of overloading methods and constructors, some may be private and some public. Especially in case when there is a non-public class that you use in your constructors, you may create a public constructor that creates an instance of that class and then passes it to a private constructor.

share|improve this answer
3  
in Java, the keyword "final" is used to prevent subclassing; it is not necessary to make the constructor private for that. – Michael Aaron Safyan May 12 '10 at 5:45
3  
it is not necessary, but you can. I mentioned the final keyword as a way to achieve this. – Bozho May 12 '10 at 5:54

Yes it can. A private constructor would exist to prevent the class from being instantiated, or because construction happens only internally, e.g. a Factory pattern. See here for more information.

share|improve this answer

Yes.

This is so that you can control how the class is instantiated. If you make the constructor private, and then create a visible constructor method that returns instances of the class, you can do things like limit the number of creations (typically, guarantee there is exactly one instance) or recycle instances or other construction-related tasks.

Doing new x() never returns null, but using the factory pattern, you can return null, or even return different subtypes.

You might use it also for a class which has no instance members or properties, just static ones - as in a utility function class.

share|improve this answer
but you could keep track of the number of instances simply by using a static variable; it isn't necessary to make the constructor private for that. – Michael Aaron Safyan May 12 '10 at 4:30
@michael indeed you can, but it is not as elegant, and the restriction is not as obvious to the users of the class. – Jon May 12 '10 at 5:13
@Jon, sorry, I misunderstood... I thought you were merely counting the number of instances, not restricting the number of instances. – Michael Aaron Safyan May 12 '10 at 5:44

Private Constructors can be defnied in the Java for the following reasons

  1. To have control on the instantiation of the Java objects, it wont allow you to create an instance of an object.

  2. It wont allow the class to be Subclassed

  3. This has a special advantage when implementing the singleton Pattern, Private contstructors are used for it and have a control on the creating the instance for the whole application.

  4. when you want to have a class with all constants defined and Does not require its instance any more, then we declare that class as a private constructor.

share|improve this answer

Some reasons where you may need private constructor: The constructor can only be accessed from static factory method inside the class itself. Singleton can also belong to this category. A utility class, that only contains static methods.

share|improve this answer

Yes.

A private constructor is used to prevent instance initializing, such as the Math final class you use in java. Singleton also use private constructor

share|improve this answer

Yes and it is used to prevent instantiation and subsequently overriding. This is most often used in singleton classes.

share|improve this answer

Yes, class can have a private constructor. It is needed as to disallow to access the constructor from other classes and remain it accessible within defined class.

Why would you want objects of your class to only be created internally? This could be done for any reason, but one possible reason is that you want to implement a singleton. A singleton is a design pattern that allows only one instance of your class to be created, and this can be accomplished by using a private constructor.

share|improve this answer

Well, if all of your methods in a class are static, then a private constructor is a good idea.

share|improve this answer

Private constructors prevent a class from being explicitly instantiated by callers see further information on PrivateConstructor

share|improve this answer

Basic idea behind having a private constructor is to restrict the instantiation of a class from outside by JVM, but if a class having a argument constructor, then it infers that one is intentionally instantiating.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.