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

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.

share|improve this question
6  
Also, there are plenty of resources on the differences between private and protected methods in Java. What resources have you looked at that you didn't find helpful? – Andrew Marshall Nov 21 '11 at 4:46
@AndrewMarshall thank you for saying what I was going to say. – Amir Raminfar Nov 21 '11 at 4:47
It is easy enough to create your own example. Create a class (Alpha) with a public, protected, package private, and private constructor. Now create another class (Beta) in the same class which extends Alpha. Now to try to create four Beta constructors off the four Alpha constructors. Now repeat the exercise with Gamma a class that extends Alpha but is not in the same package. Now repeat the exercise with Delta a class that extends Alpha and is also nested inside Alpha. Figure out which constructors you can and can not extend and write a discussion about it. – emory Nov 21 '11 at 4:59

4 Answers

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.

share|improve this answer
then why a class with protected constructor can't be instantiated by its subclass in another package? – user899628 Nov 21 '11 at 5:02
This one is tricky. The following code compiles, but seems to be a counter-example. Of course it depends on which class you meant when you wrote "from outside the class itself": class priv { class a { private a ( ) { super ( ) ; } } class b extends a { b ( ) { super ( ) ; } } } – emory Nov 21 '11 at 5:05
@user899628 - Perhaps the class itself has default access (and hence the entire class is not accessible outside the package). Otherwise, a subclass should be able to invoke the superclass's protected constructor via super. – Ted Hopp Nov 21 '11 at 5:16
@emory - A nested class obeys different rules because it is "part" of the enclosing class. – Ted Hopp Nov 21 '11 at 5:17

private : only access in its own class

protected: only access in its own class and its subclass

share|improve this answer
5  
(Protected - accessible in the package as well) – Binyamin Sharet Nov 21 '11 at 9:51

Prviate : Only access in its own class
Protected: Only access in its own class and its subclass
When ever constructor is private:
A private constructor is a special instance constructor. It is commonly used in classes that contain static members only. If a class has one or more private constructors and no public constructors, then other classes (except nested classes) are not allowed to create instances of this class.
EX:-

class NLog 
{
 // Private Constructor:
  private NLog() {}
 public static double e = 2.71828;
}  

When ever constructor is protected
According to 6.6.2 Details on protected Access

A subclass only access a protected members of its parent class, if it involves implementation of its parent. Therefore , you can not instantiate a parent object in a child class, if parent constructor is protected and it is in different package.

share|improve this answer

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.

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.