其他分享
首页 > 其他分享> > Call Hierarchy With IntelliJ IDEA

Call Hierarchy With IntelliJ IDEA

作者:互联网

https://www.jetbrains.com/help/idea/viewing-structure-and-hierarchy-of-the-source-code.html

With IntelliJ IDEA, you can examine the hierarchy of classes, methods, and calls and explore the structure of source files.

Build hierarchies

When built, a hierarchy can be immediately viewed and examined in the Hierarchy tool window. By default, every new built hierarchy overwrites the contents of the current tab. You can retain the current tab and have the next hierarchy built in a new one.

Build a type hierarchy

  1. Select the desired class in the Project tool window or open it in the editor.

  2. From the main menu, select Navigate | Type Hierarchy or just press Ctrl+H.

    Class hierarchy shown in the Hierarchy Tool Window

     

Build a method hierarchy

  1. Open the file in the editor and place the caret at the declaration of the desired method.

    Alternatively, select the desired method in the Project tool window.

  2. From the main menu, select Navigate | Method Hierarchy or press Ctrl+Shift+H.

Build a call hierarchy

  1. Open a file in the editor and place the caret at the declaration or usage of the desired method or a field.

    Alternatively, select the desired method or the field in the Project tool window.

  2. From the main menu, select Navigate | Call Hierarchy or press Ctrl+Alt+H.

Retain a hierarchy tab

View hierarchies

Open the Hierarchy tool window

  1. Make sure, you have already built hierarchies to show, see Building hierarchies above.

  2. Select View | Tool Windows | Hierarchy from the main menu.

Navigate between the tabs

Toggle between views

 

Hierarchy tool window buttons

==============

 

https://www.jetbrains.com/go/guide/tips/call-hierarchy/

 

Call Hierarchy

Analyze call trees for functions or methods

<iframe data-gtm-yt-inspected-1_25="true" data-gtm-yt-inspected-58776_780="true" frameborder="0" height="360" id="vjs_video_3_youtube_api" src="https://www.youtube.com/embed/alp6DFEuFYw?controls=0&modestbranding=1&rel=0&showinfo=0&loop=0&fs=0&hl=en&list=PLM-t1Z4tbFflkIOaap4P-BV30ZrZwrDld&enablejsapi=1&origin=https%3A%2F%2Fwww.jetbrains.com&widgetid=1" title="YouTube video player" width="640"></iframe>    

Call Hierarchy allows you to quickly see all the places where a function or method is used.

How to use:

Press Ctrl + Alt + H on Windows/Linux⌥ + ^ + H on macOS, and the Call Hierarchy tool window will open up with all the places that the function is called inside.

Pro tip:

This works for interface methods, type methods, methods, and calls.

You can then drill down into the call chain to see where those other functions are called.

Speed Typing is available to help you quickly navigate to the element you need.

New in 2017.3

标签:IntelliJ,Hierarchy,tool,hierarchy,window,Call,method,methods
来源: https://www.cnblogs.com/kungfupanda/p/15374896.html