此问题与 - How do I find the caller of a method using stacktrace or reflection?
不重复我正在尝试将所有可能的路径分析到我的代码库的特定方法。我想象的是这样的事情:
Class clazz = MyClass.class;
Method method = clazz.getMethod("myMethod");
Method[] possibleCallers = getMethodsThatInvokeMethod(method); // <-- How do I implement this
这是否可以使用反射?如果没有,是否有任何可以提供帮助的开放式库?
更新:为了澄清,我只想在项目中找到给定方法的可能的静态调用。