标签: java reflection
给定一个类,是否可以列出该特定类使用的所有方法?使用getMethods()或getDeclaredMethods()不起作用,因为我也想获取属于导入类的调用方法。
getMethods()
getDeclaredMethods()
public class A { public static void a(); } public class B { public static void b(){ A.a(); } }
如果B使用A的方法,我也想列出它。怎么做?