Eclipse keyboard shortcut: goto function name

萝らか妹 提交于 2019-11-28 16:47:58
SuitUp

Yeah, this is an old question, but I have a better solution: what about F3? And CTRL + O is what Windows users are looking for.

Narcolei

This is an old question, but for the sake of people Googling this, Ctrl + O opens the code outline search, which is what you were looking for.

VonC

Not exactly a direct shortcut, but you need to go through the Java Search dialog:

(Ctrl+H):

(Sergei mentions in the comments that you might have to select "Declarations" in the "Limit To" section)

elduff

Not sure if this is exactly what you want, but if you Ctrl + H, that'll bring up the search dialog. The default option (for me, using the Java EE perspective) is a Java search. I can type in the method name, and then select the 'Method' radio button under the Search For block. Note that the default option (again, for me) for the 'Limit To' block was the 'References' radio button. I had to change that to 'All occurences' in order to see the method declaration, and not just callers.

Robbit

Press CTRL + Left Mouse Button on the name your function. Eclipse will open the clicked file with this function automatically.

user657862

I use Momentics, so I'm not sure if this is in Eclipse or in Momentics plugin, but if it is Eclipse I think this is exactly what you need: CTRL + Shift + T.

Quick and dirty is to use Ctrl+Shift+Up/Down, which jumps between members (methods, variables) in Java.

David Mann

If the method in question is on an interface, then using Quick Outline or F3 to jump to the definition will only take you to the interface definition. This isn't often what I want. Instead I hit, on my mac, Cmd + T on the method to get a Quick Type Hierarchy. From the type hierarchy you can go to the implementation of the method.

Simply hitting F3 by placing cursor on the function name will work for windows users.

simple 2 ways to function declarations:

Way 1: ( Whole workspace )
                  Ctrl + Left Click the function calling place.

way 2: ( within the same page )
                  press Ctrl + F to find dialog window and type n function_name and search.

these will redirect to function definition

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!