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

Possible Duplicate:
Why is super.super.method(); not allowed in Java?

If you have a class that derives from a class that derives from another is there anyway for me to call the super.super method and not the overridden one?

class A{
    public void some(){}
} 

class B extends A{
    public void some(){}
} 

class C extends B{
    public void some(){I want to call A.some();}
} 
share|improve this question

marked as duplicate by tgamblin, OscarRyz, Swati, Adam Paynter, ColinD Jun 15 '11 at 18:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

@tgamblin is right but here is a workaround :

class A{
    public void some(){ sharedCode() }
    public final void someFromSuper(){ sharedCode() }

    private void sharedCode() { //code in A.some() }
} 

class B extends A{
    @Override
    public void some(){}
} 

class C extends B{
    @Override
    public void some(){
     //I want to call A.some();
     someFromSuper();
    }
} 

Create a second version of your method in A that is final (not overridable) and call it from C.

This is actually a poor design, but sometimes needed and used inside JDK itself.

Regards, Stéphane

share|improve this answer

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