myeclipse 中的 F4 快捷键及其在 IntelliJ idea 中的等价物
F4 shortcut in myeclipse and its equals in IntelliJ idea
在 MyEclipse
中,F4
快捷方式用于查找 class 是 extends/implements/override 当前类型,例如 Class/Interface/method
。
这个快捷方式对我有用。
在 IntelliJ
上面的想法中,设施是通过 class/interface/method 的左侧绿色图标实现的。这意味着我必须单击图标并查看列表。
我的问题是:在 IntelliJ
想法中是否有类似于 MyEclipse
的快捷方式,无需鼠标即可找到子 class 或方法?
I think Ctrl-H is what you are looking for.
它将在window中打开继承层次结构。
如 mentioned, if you want to navigate directly to an implementation of a class or method use Ctrl-Alt-B。如果只有一个,它将打开实现,或者如果有多个选项,则让您选择一个。
导航 |实现(默认键盘映射中的 Ctrl-Alt-B)。
在 MyEclipse
中,F4
快捷方式用于查找 class 是 extends/implements/override 当前类型,例如 Class/Interface/method
。
这个快捷方式对我有用。
在 IntelliJ
上面的想法中,设施是通过 class/interface/method 的左侧绿色图标实现的。这意味着我必须单击图标并查看列表。
我的问题是:在 IntelliJ
想法中是否有类似于 MyEclipse
的快捷方式,无需鼠标即可找到子 class 或方法?
I think Ctrl-H is what you are looking for.
它将在window中打开继承层次结构。
如
导航 |实现(默认键盘映射中的 Ctrl-Alt-B)。