在 Eclipse 项目中查找方法调用

Find methods calls in Eclipse project(在 Eclipse 项目中查找方法调用)

本文介绍了在 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 项目中查找方法调用

基础教程推荐