Find methods calls in Eclipse project(在 Eclipse 项目中查找方法调用)
问题描述
我有一个包含方法 myMethod() 的 X 类.我想在当前工作区中的所有项目中找到调用此 myMethod() 的位置.我不能使用任何搜索功能,因为 myMethod() 有几个类,而且它不是静态的.因此,我需要知道此类对象的名称,如果不手动探索项目,这是不可能的.
I have a class X containing method myMethod(). I would like to find locations in all projects in my current workspace where this myMethod() is being called. I cannot use any search functions as there are several classes with myMethod(), and it isn't static. Hence I need to know the name of the objects of this class, which isn't possible without manually exploring the projects.
Eclipse 有解决方案吗?
Does Eclipse have a solution for this?
推荐答案
转到 X.java 中的方法,然后从上下文菜单中选择 Open Call Hierarchy.
Go to the method in X.java, and select Open Call Hierarchy from the context menu.
这篇关于在 Eclipse 项目中查找方法调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Eclipse 项目中查找方法调用
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01