查找 Eclipse 中某个函数的所有出现位置
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
右键单击该功能时,您可以在上下文菜单中找到一个菜单条目。当光标位于函数或成员上方时,您还可以按 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.
选择一个方法并按 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.
使用 Ctrl+Shift+G 搜索整个工作区
Use Ctrl+Shift+G for search the whole workspace
这是很hackish的,但是如果你临时改变方法签名,就会产生编译错误,而且很容易发现。
This is hackish, but if you temporarily change the method signature, it will create compile errors, which are easy to find.
使用 Ctrl+G 查找项目中某个函数的所有使用情况。
Use Ctrl+G to find all uses of a function in the project.