查找 Eclipse 中某个函数的所有出现位置

发布于 2024-10-15 05:54:40 字数 120 浏览 2 评论 0原文

在 Eclipse 中,如何找到 Java 应用程序中某个函数的所有用法?这样做的捷径是什么?

我尝试使用 Ctrl+H 按方法搜索,但它返回所有具有相同名称的方法。

In Eclipse, how can I find all usages of a function in a Java app? What is the shortcut for that?

I tried with Ctrl+H to search by method, but it return me all methods with the same name.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

暮光沉寂 2024-10-22 05:54:40

右键单击该功能时,您可以在上下文菜单中找到一个菜单条目。当光标位于函数或成员上方时,您还可以按 Ctrl+G。并非每个项目和文件类型都支持此功能。例如,EPIC Perl 仅支持查找函数的定义。

You can find a menu entry in the context menu, when right clicking on the function. You can also press Ctrl+G when the cursor is above the function or member. Not every project and file type supports this feature. For example, EPIC Perl only supports finding the definition of a function.

走过海棠暮 2024-10-22 05:54:40

选择一个方法并按 Ctrl+Alt+H 打开其调用层次结构,其中将显示该方法的位置正在被呼叫。

Select a method and hit Ctrl+Alt+H to open its Call Hierarchy which will show you where the method is being called from.

旧情别恋 2024-10-22 05:54:40

使用 Ctrl+Shift+G 搜索整个工作区

Use Ctrl+Shift+G for search the whole workspace

云醉月微眠 2024-10-22 05:54:40

这是很hackish的,但是如果你临时改变方法签名,就会产生编译错误,而且很容易发现。

This is hackish, but if you temporarily change the method signature, it will create compile errors, which are easy to find.

但可醉心 2024-10-22 05:54:40

使用 Ctrl+G 查找项目中某个函数的所有使用情况。

Use Ctrl+G to find all uses of a function in the project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文