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 项目中查找方法调用
基础教程推荐
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
