Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having a class 'ClassA' which is having private constructor.

public final class ClassA{
  private ClassA{
  }

  public static void main(String[] arg) }{
  ;
  ;
  ;
  }
}

Now, i am extending the class 'ClassA' [ final keyword is removed before doing this ]

public class ClassB extends ClassA{
     public static void main(String[] arg) }{
      ;
      ;
      ;
      }

}

Now, i am getting Implicit super constructor classA() is not visible. Must explicitly invoke another constructor. What does it mean and how to resolve this?

Note i can not change the access specifier of ClassA constructor.

share|improve this question
As all answers are about changing the access specifier, i am accepting the one which came first. :) – Rakesh Juyal Oct 11 '10 at 8:04
1  
I thought you noted you can't change the access for ClassA constructor... – Bivas Oct 11 '10 at 8:40
@Bivas: yes, but nobody seems to answer other than changing private to public/protected – Rakesh Juyal Oct 11 '10 at 14:05
I did (composition solution) :-) – Bivas Oct 11 '10 at 16:02

4 Answers

up vote 1 down vote accepted

Change the constructor visibility of ClassA from private to protected.

Constructors always begin by calling a superclass constructor. If the constructor explicitly contains a call to a superclass constructor, that constructor is used. Otherwise the parameterless constructor is implied. If the no-argument constructor does not exist or is not visible to the subclass, you get a compile-time error.

share|improve this answer
As all answers are about changing the access specifier, i am accepting the one which came first. :) – Rakesh Juyal Oct 11 '10 at 8:06

I would suggest composition instead of inheritance (maybe that's what the designer of ClassA intended for class usage. Example:

public class ClassB {
   private ClassA classA;

   ClassB() {
       // init classA
       ...
   }

   public ClassA asClassA() {
       return classA;
   }

   // other methods and members for ClassB extension
}

You can delegate methods from ClassB to ClassA or override them.

share|improve this answer

Changing private ClassA{} to protected ClassA{} sounds like a good solution.

Parent constructor is always called in child class: implicitly or not. So, your ClassB definition is equivalent to

public ClassB extends ClassA {
    public ClassB() {
        super();
    }

    // all other methods you have go here...
}

If the only constructor of ClassA is private, it can't be called from ClassB.

share|improve this answer

Java will implicitly create a constructor with no parameters for ClassB, which will call super(). In your case the constructor in ClassA is not visible, hence the error you are getting. Changing the visibility to public or protected will resolve the error.

share|improve this answer
i can't change the constructor to public – Rakesh Juyal Oct 11 '10 at 8:02

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.