How to find out if a method is overridden by child classes?

For example,

public class Test {

static public class B {
    public String m() {return "From B";};
}

static public class B1 extends B {

}

static public class B2 extends B {
    public String m() {return "from B2";};
}

/**
 * @param args
 * @throws FileNotFoundException 
 */
public static void main(String[] args)  {

    B b1 = new B1();
    System.out.println("b1 = " + b1.m());
    B b2 = new B2();
    System.out.println("b1 = " + b2.m());
}

}

Given an instance of B, how do I know if any derived classes have overridden method m() like B2?

Update: My question wasn't clear. Actually, I was trying to ask if this is possible without resorting to reflection. This check is done in a tight loop and it's used in a performance hack to save a few CPU cycles.

link|improve this question

2  
possible duplicate of How to quickly determine if a method is overridden in Java – erickson Jan 27 '11 at 20:58
1  
Of course how you code is none of my business but if you actually need this information, there's probably poor OO design lurking in the shadows – biziclop Jan 27 '11 at 21:15
I don't think it's possible without resorting to reflection. And I agree with biziclop, it's a sign of poor design. – Sergey Tachenov Jan 28 '11 at 7:53
feedback

5 Answers

This question helps demonstrate how to get the information of which class that method belongs to:

How to quickly determine if a method is overridden in Java

class.getMethod("myMethod").getDeclaringClass();
link|improve this answer
As soon as you override a method in the subclass this method becomes a declared method of this class, hence clazz.getMethod("myMethod").getDeclaringClass() will return the subclass itself. I guess you could get the super class and call get method again to check whether the method still appears and draw your conclusions from that. – Hardy Jan 20 at 15:57
feedback

I think the answers so far are assuming that you have a method and are trying to determine whether that method is overridden in a class.

However, the actual question asked was "Given an instance of B, how do I know if any derived classes have overridden method m() like B2?"

This is not possible to do using standard Java methodology, because Java does not load classes until they are referenced. For example, assume you have a URL classloader loading from a jar (or many jars) on the network. Java has no idea what classes are contained in those networked jar files, let alone whether they happen to override a particular method.

I think that I've seen utilities in Apache commons that will try to exhaustively search the hierarchy of classloaders to assemble a list of all available classes, but this sounds like a pretty bad idea to me. For one thing, it will trigger every single static initializer block for every class in the JVM.

There are some facilities like the Service Provider Interface to list class names in the jar's META-INF directory that implement a certain interface, maybe you should look at that route.

link|improve this answer
this is correct. – irreputable Jan 27 '11 at 21:32
feedback

Java's reflection API has a Method class which has a method called getDeclaringClass(). That might work for what you need. Here is the API:

http://download.oracle.com/javase/6/docs/api/java/lang/reflect/Method.html#getDeclaringClass()

link|improve this answer
feedback
 public static boolean isMethodOverrriden(Method myMethod) {
     Class<?> declaringClass = myMethod.getDeclaringClass();
     if (declaringClass.equals(Object.class)) {
         return false;
     }
     try {
         declaringClass.getSuperclass().getMethod(myMethod.getName(), myMethod.getParameterTypes());
         return true;
     } catch (NoSuchMethodException e) {
         return false;
     }
 }
link|improve this answer
feedback

Think about it, you probably don't need this information. Java has both static type checking and supports polymorphism. So what's the point of trying to find out a priori which classes override?

It seems that you have something dodgy with your design.

Cheers,

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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