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

Is there any way to forbid the son class to call the public method of super class in java?

For example

public abstract class TObject{
    abstract public void quark();
}


public class Animal extends TObject{

       public void quark(){
           System.out.println("this is the animal");
       }

}

public class Dog extends Animal{
       @overide
       public void quark(){
           System.out.println("this is the animal");
           **super.quark();**
       }
} 

In this example, The Dog call the **super.quark();** in it's quark method.

But I don't want the Dog could call super.quark(); and I also don't want to change the

modifier of quark method in Animal to private. Is there any way to prevent this in compile?

I have be confused couple of days, who can help me........

The reason I do that is I met the similar problem in developing hudson scm plugin.I

created the class which extends the SubversionSCM(the offical class). I just wanted to

override the public method of super class, then call super's public method back like

example. but the compile gave error.I don't konw why, how could it do? Dose java have

something like *reflect way*s to prevent this?

share|improve this question
2  
Short answer, don't do this; if you require this functionality then your design is flawed. – Mondain Sep 12 '10 at 4:52
4  
please post the compilation error you get. also, please post the linee of code where the error is reported. – atk Sep 12 '10 at 5:16

3 Answers

No, by definition of public you can't stop the method from being called (whether from a derived class or anywhere else). You can of course stop it from being overridden (and thereby ensure that the syntax used to call it won't use super;-) by making it final.

share|improve this answer
You can call final methods with super. There's no real reason to do so, but it's allowed. – Matthew Flaschen Sep 12 '10 at 4:39
Firstly Thanks for your reply. – tangjinou Sep 12 '10 at 5:02
In real situation, I can't change anything in class Animal because it is written by others. – tangjinou Sep 12 '10 at 5:39

No, there's no way to have a public method that subclasses can't call. The best you can do is document this recommendation.

As a note, it's called a subclass or child class.

share|improve this answer
@Downvoter, what part of this answer is incorrect? – Matthew Flaschen Sep 12 '10 at 4:47
Dose java have something like *reflect way*s to prevent this? – tangjinou Sep 12 '10 at 5:40
@tangjinou - No. – Stephen C Sep 12 '10 at 6:09

The other 2 answers (Alex & Matthew) are basically right.

  1. you can prevent the subclass from calling a public method from the super class
  2. there is probably something wrong with your design if you do this.

The below Father class has two public methods named fatherMethod. Subclasses can call the fatherMethod using reflection (Thank You Matthew for pointing that out.) Without using reflection, subclasses can probably not call either fatherMethod method. Thus it is very similar to a private method.

class Father
{
    private class Alpha { }

    private class Beta { }

    public void fatherMethod ( Alpha param )
    {
    }

    public void fatherMethod ( Beta param )
    {
    }
}
share|improve this answer
The reason why I do that is that I met the similar problem in developing hudson scm plugin.I create the class extends the SubversionSCM(the offical class). I just want to override the public method of super class, then call super's public method back like example. but the compile gave error.I don't konw why, how could it do? Dose java have something like reflect ways to prevent this? – tangjinou Sep 12 '10 at 5:21
1  
Is the superclass method final? R U overriding it? Is it static? Is it generic? Have you double checked the parameter types? Double checked the names? Does it throw an exception? – emory Sep 12 '10 at 5:28
the subperclass is not final and static , I could override the public method but can't call the super method in my override method.. – tangjinou Sep 12 '10 at 5:33
Do u put the @Override tag on the method? I suspect u r not really overriding the public method. – emory Sep 12 '10 at 5:50
If you have the @Override tag on the method and it is not really overidding the compiler will tell you. – emory Sep 12 '10 at 5:51
show 3 more comments

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.