Intellij IDEA自动显示javadoc

envsm3lx  于 2023-10-15  发布在  IntelliJ IDEA
关注(0)|答案(3)|浏览(153)

当我在Netbeans编程时,它会自动完成代码并显示Javadocs。然而,当我使用Intellij IDEA时,如果我单击Ctrl+Space,我可以看到自动完成,如果我单击Ctrl+Q,我可以单独看到javadoc。
当我看到自动完成或在Intellij IDEA上单击Ctrl+Space时,是否可以看到元素的Javadoc,就像NetBeans一样?

omvjsjqw

omvjsjqw1#

Settings| Editor| General| Code Completion| Show the documentation popup in __ ms .

旧版本:Settings| Editor| General| Code Completion| Autopopup documentation in (ms)

UPDATE:最新版本有option to show JavaDoc on mouse move

5q4ezhmt

5q4ezhmt2#

文件->设置->编辑器->代码完成。
检查 * 自动弹出文档(毫秒)* 并选择延迟。

qlckcl4x

qlckcl4x3#

在IntelliJ IDEA 14中显示Javadoc:

  • 当你写代码时:

File -> Settings -> Editor -> General -> Code Completion -> Autopopup documentation in (ms)
只有当您按下CTRL+空格键时才可用。如果您在弹出时选择大头针图标,则更有用。文档窗口将添加到右侧的选项卡中。稍后,我建议调整窗口大小并取消选中Pinned属性。

  • 鼠标悬停时:

File -> Settings -> Editor -> General -> Show quick documentation on mouse move

相关问题