I have two classes.

public class A {
    public Object method() {...}
}

public class B extends A {
    @Override
    public Object method() {...}
}

I have an instance of B. How do I call A.method() from b? Basically, the same effect as calling super.method() from B.

B b = new B();
Class<?> superclass = b.getClass().getSuperclass();
Method method = superclass.getMethod("method", ArrayUtils.EMPTY_CLASS_ARRAY);
Object value = method.invoke(obj, ArrayUtils.EMPTY_OBJECT_ARRAY);

But the above code will still invoke B.method()

link|improve this question
feedback

4 Answers

You can't do that. It would mean polymorphism is not working.

You need an instance of A. You can create one by superclass.newInstance() and then transfer all fields with something like BeanUtils.copyProperties(..) (from commons-beanutils). But that's a 'hack' - you should instead fix your design so that you don't need that.

link|improve this answer
But how does super.method() work? I believe JVM holds both A.method and B.method bytecode, and it chooses to call A.method() if B.method calls super.method(). – Ted Mar 24 '11 at 20:46
@Ted super works that way, but you can only use it from the subclass. – Bozho Mar 24 '11 at 21:22
feedback

It's not possible. Method dispatching in java always considers the run-time type of the object, even when using reflection. See the javadoc for Method.invoke; in particular, this section:

If the underlying method is an instance method, it is invoked using dynamic method lookup as documented in The Java Language Specification, Second Edition, section 15.12.4.4; in particular, overriding based on the runtime type of the target object will occur.

link|improve this answer
But how does super.method() work? I believe JVM holds both A.method and B.method bytecode, and it chooses to call A.method() if B.method calls super.method(). – Ted Mar 24 '11 at 20:53
feedback

You can't, you'll need an instance of the super class because of the way methods dispatching works in Java.

You could try something like this:

import java.lang.reflect.*;
class A {
    public void method() {
        System.out.println("In a");
    }
}
class B extends A {
    @Override
    public void method() {
        System.out.println("In b");
    }
}
class M {
    public static void main( String ... args ) throws Exception {
        A b = new B();
        b.method();

        b.getClass()
         .getSuperclass()
         .getMethod("method", new Class[]{} )
         .invoke(  b.getClass().getSuperclass().newInstance() ,new Object[]{}  );

    }
}

But most likely, it doesn't make sense, because you'll loose the data in b.

link|improve this answer
But how does super.method() work? I believe JVM holds both A.method and B.method bytecode, and it chooses to call A.method() if B.method calls super.method(). – Ted Mar 24 '11 at 21:52
1  
It is an "special" instruction at the bytecode level ( just like a constructor ) that seems to be unavailable with reflection. The instruction is "invokeSpecial" see: java.sun.com/docs/books/jvms/second_edition/html/… – OscarRyz Mar 24 '11 at 23:07
feedback

I don't know how to do it in the case when You want to do the trick for included libraries, because the reflection doesn't work, but for my own code I would do this simple workaround:

public class A {
    public Object method() {...}
}

public class B extends A {
    @Override
    public Object method() {...}

    public Object methodSuper() {
        return super.method();
    }
}

For simple cases this is OK, for some automatic invocation not so much. For instance, when You have a chain

A1 super A2 super A3 ... super An 

of inheriting classes, all overriding a method m. Then invoking m from A1 on an instance of An would require too much bad coding :-)

link|improve this answer
This doesn't help you, when you have to use reflection (e.g. because methodSuper() did not exist in an earlier version of the platform you run on.) – Marcus Wolschon Nov 10 '11 at 11:18
feedback

Your Answer

 
or
required, but never shown

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