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

I have a small problem in my code

I have 2 classes

public class A {

     public A foo(int a) {return new A();}
}

public class B extends A{

     public B foo(int x){ return new B();}
}

now in my code I want to print only the method that was declared in class B

in this way

B b = new B();

Method[] m = b.getClass().getDeclaredMethods();

for (int i = 0; i < m.length; i++) {

System.out.print(m[i].getName());   
}

why the output is

foo

foo

why the GetDeclaredMethods finds also the foo in the A class? how can i fix it?

thanks

share|improve this question

6 Answers

The reason you are having a problem is because of the covariant return types of your two methods. Because you have a covariant return type (the return type of B is B, not A, unlike the superclass), Java under the hood generates a separate method with the original return type to act as a bridge between the pre-1.5 bytecode specification the new Java 1.5 language behavior.

The method you should be using to check, though is the isBridge() method, as it expresses exactly what you intend to exclude. So the final code would look something like this:

Method[] methods = B.class.getDeclaredMethods();

for (Method method : methods) {

   if (!method.isBridge()) {
       System.out.println(method.getName());
   }   
}
share|improve this answer
Its seems to be the solution to my problem, thank you But what the difference between IsBridge() and isSynthetic()? – Dazel Dec 25 '09 at 17:00
1  
@Dazel, basically isBridge identifies things which are done by the Java compiler to fit a Java language features introduced by Generics into bytecode limitations. isSynthetic tells you if the method is synthetically generated, which bridge methods are, but more things are as well, such as some elements of inner classes. So a bridge is always synthetic, but a synthetic isn't always a bridge. Thinking about it further, synthetic might be what you care about most - the method doesn't exist in the source code, you don't care why. – Yishai Dec 25 '09 at 17:58
Nice, I never realized this. Seems that some of the things they had to do to get Java working with the 1.5-and-up spec are... interesting. – Kaleb Brasee Dec 25 '09 at 22:57
THANK YOU for this knowledge, I never would found this on my own. I'm trying to expose Java methods in a sandboxed scripting language, and this multi-method discrepancy was driving me crazy. – Philip May 10 at 3:51

Because B.foo and A.foo is different methods. If you want to override method A.foo, then method B.foo must return class A.

share|improve this answer
Correct answer, so +1, but it is not very well expressed if you don't already understand the answer. – Yishai Dec 25 '09 at 18:01

By default, getDeclaredMethods() returns all of the methods for the given class, as well as it's parent classes and interfaces. However, the Method object allows you to test which class a Method belongs to by calling getDeclaringClass() on that Method. So when you cycle through all the Method objects, you can add logic to only print a method if it belongs to the B class.

Method[] m = b.getClass().getDeclaredMethods();
for (int i = 0; i < m.length; i++) {
  if (m[i].getDeclaringClass().equals(B.class)) {
    System.out.print(m[i].getName());
  }
}

EDIT: The above code doesn't work as desired -- it returns B as the declaring class of all methods. The isSynthetic() method appears to work as desired, returning true for an overridden method (one that came from A), but false for one that came from B. So the following code might be what you're looking for.

Method[] m = b.getClass().getDeclaredMethods();
for (int i = 0; i < m.length; i++) {
  if (!m[i].isSynthetic()) {
    System.out.print(m[i]);
  }
}
share|improve this answer
sorry but this is not the correct solution I still Get 2 foo in the output – Dazel Dec 25 '09 at 16:03
Lemme run it and see what the problem is... – Kaleb Brasee Dec 25 '09 at 16:10
I found the method isSynthetic() It return false for the original foo in class B and return true for the foo from class A but because I not familiar with the isSynthetic() method I'm not sure that this the correct use of it. Is this the right place to use this method? – Dazel Dec 25 '09 at 16:23
1  
getDeclaredMethods does NOT return the methods from parent classes or interfaces, or is the javadoc wrong? – Carlos Heuberger Dec 25 '09 at 17:55
1  
Depending on which version of Java 1.6 you are running, you might get the inherited methods returned with getDeclaredMethods() See bugs.sun.com/bugdatabase/view_bug.do?bug_id=6815786 – andyb Jun 7 '11 at 13:58
show 2 more comments

You can call m.getDeclaringClass() to see if it's the Method from Class A or Class B.

share|improve this answer
in both cases the getDeclaringClass returns B – Dazel Dec 25 '09 at 16:07

This may work:

A a = new A();
B b = new B();

List<Method> aMethods = Arrays.asList(a.getClass().getMethods());
List<Method> bMethods = Arrays.asList(b.getClass().getMethods());

for ( Method m : bMethods )
{
  if( ! aMethods.contains(m) )
  {
  //Your action code here
  }
}
share|improve this answer

When you says if( ! aMethods.contains(m) ) does contains compare by name? arguments type? return value type? because the only difference from the wanted method to the not is the covariance return type...

share|improve this answer
another difference: one is a bridge method (also synthetic), but this is not checked by equals). contains use the equals method, and the documentation from Method.equals says: "... Returns true if the objects are the same. Two Methods are the same if they were declared by the same class and have the same name and formal parameter types and return type." – Carlos Heuberger Dec 29 '09 at 13:25

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.