I am quite confused with the difference with private and protected constructor in java regarding the accessibility of the subclasses and creating instance. Some code example is even better. Thanks in advance.
|
A class with only private constructors cannot be subclassed or instantiated from outside the class itself. (Such a class may have static factory methods for creating instances. The factory methods can invoke the constructor.) A class with a mixture of private and protected constructors can be subclassed; only the protected constructors can be used by subclasses. Basically, the same rules of access (private/protected/default/public) apply to constructors as they do to any other class member. |
|||||||||
|
|
|
|||||
|
|
Prviate : Only access in its own class
When ever constructor is protected
|
||||
|
|
|
Private Constructor : IT is only accessible to its own class and is used for many reasons and in situations like a class just having static members only. Used when the security is required in a sense to restrict a class from instantiated from outside the class. Used in a design pattern called singleton design pattern. Protected Constructor : It is basically accessible by the subclasses in a packages. Protected works in a same way it is used in classes. |
|||
|
|

privateandprotectedmethods in Java. What resources have you looked at that you didn't find helpful? – Andrew Marshall Nov 21 '11 at 4:46