在Eclipse中,当鼠标悬停在一个方法、变量等上时,会显示一个带有相应JavaDocs的工具提示。IntelliJ中有这样的特性吗?
当前回答
答案是CTRL + P(不是CTRL + Q)
还有人在JetBrains论坛上发表了这样的回答: 这个想法是一个不同的IDE。试着去发现它的特性并充分利用它,而不是试图模仿你以前使用的任何东西。 在大多数情况下,Idea具有非常高的可用性(比Eclipse IMHO好得多),并且尽可能地支持代码编辑(而不是过于依赖向导)。
Javadoc: Ctrl-Q 快速查看实现:Ctrl-Shift-I 显示上下文:Alt-Q 显示参数(在方法调用中):Ctrl-P 显示错误描述。Ctrl-F1
... 加上更多的快捷方式,在代码和不同的想法视图导航。
我认为这是相当不错的,你可以看到你感兴趣的特定信息与一个简单的按键。 看看菜单,它也会显示你的键图可能修改的快捷方式。
0 《阿凡达》 Jens Voß 创建于2008.6.12 09:26 而且,elsandros,除了Stephen所写的:既然你似乎对IDEA的键盘快捷键感兴趣,我强烈推荐“Key Promoter”插件,它可以帮助你快速记住相关的快捷键。
同样非常有用的是“Goto Action”功能,由Ctrl-Shift-A调用。在弹出窗口中,您可以输入关键字(例如。“Javadoc”),IDE会告诉您与搜索匹配的可用操作,以及键盘快捷键和包含的操作组(通常还会告诉您如何使用菜单导航到操作)。
其他回答
在Intellij 2019中,我做了:文件>设置>编辑器>通用选项显示鼠标移动的快速文档。
在IntelliJ版本11之前,不,不仅仅是将鼠标悬停在它上面。如果光标在方法名或属性名内,那么CTRL+Q将显示*nix和Windows上的JavaDoc。在MacOSX上,按CTRL+J。
引用:“不,查看完整javadoc的唯一方法是使用Quick Doc (Ctrl-Q)。”——http://devnet.jetbrains.net/thread/121174
EDIT
从IntelliJ 12.1开始,这是可能的。请看@ADNow的回答。
至少对我来说,最简单的方法是:
Ctrl + Shift +一个 类型:show document 显示鼠标移动时的快速文档(设置为on)
从IntelliJ Ultimate 2018.1.5,也就是IntelliJ IDEA 2018.1.5,到2019.3,在File -> Preferences下实际上有两个选项:
In Editor > General > Other (section) > Show quick documentation on mouse move - delay 500 ms Select this check box to show quick documentation for the symbol at caret. The quick documentation pop-up window appears after the specified delay. In Editor > General > Code Completion (sub-item) > Auto-display documentation in 1000 ms Select this check box to have IntelliJ IDEA automatically show a pop-up window with the documentation for the class, method, or field currently highlighted in the lookup list. If this check box is not selected, use Ctrl+Q to show quick documentation for the element at caret. Quick documentation window will automatically pop up with the specified delay in those cases only, when code completion has been invoked explicitly. For the automatic code completion list, documentation window will only show up on pressing Ctrl+Q.
推荐文章
- 如何添加JTable在JPanel与空布局?
- Statement和PreparedStatement的区别
- 为什么不能在Java中扩展注释?
- 在Java中使用UUID的最重要位的碰撞可能性
- 转换列表的最佳方法:map还是foreach?
- 如何分割逗号分隔的字符串?
- Java字符串—查看字符串是否只包含数字而不包含字母
- Mockito.any()传递带有泛型的接口
- 在IntelliJ 10.5中运行测试时,出现“NoSuchMethodError: org.hamcrest. matcher . descripbemismatch”
- 使用String.split()和多个分隔符
- Java数组有最大大小吗?
- 在Android中将字符串转换为Uri
- 从JSON生成Java类?
- 为什么java.util.Set没有get(int index)?
- Swing和AWT的区别是什么?