如何使IntelliJ IDEA仅在悬停时显示推断的局部变量的Java类型提示?

huangapple go评论107阅读模式
英文:

How to make Intellij IDEA show Java type hints for inferred local variables only on hover?

问题

Intellij IDEA 在 Java 10 的新 'var' 特性创建的变量上显示类型提示。

然而,推断出的类型有时会很长,导致行长度超过宽度指南,就像您在下面的截图中所看到的那样:

如何使IntelliJ IDEA仅在悬停时显示推断的局部变量的Java类型提示?

是否可能使 Intellij IDEA 仅在悬停时显示类型提示?

英文:

Intellij IDEA shows type hints for variables created with the new 'var' feature from Java 10.

However, inferred types are so long sometimes that the line length ends up exceeding the width guide as you can see in the screenshot below:

如何使IntelliJ IDEA仅在悬停时显示推断的局部变量的Java类型提示?

Is it possible to make Intellij IDEA only show type hints on hover?

答案1

得分: 3

这是目前不可能的,你可以投票支持相关的功能请求。

英文:

It's not possible at the moment, you can vote for the linked feature request.

答案2

得分: 2

解决方法

禁用隐式类型的类型提示:
如何使IntelliJ IDEA仅在悬停时显示推断的局部变量的Java类型提示?

在您想要查看类型的表达式上使用 show type info

在 Windows 上的快捷键是 Ctrl+Shift+P
如何使IntelliJ IDEA仅在悬停时显示推断的局部变量的Java类型提示?

英文:

Workaround

Disable type hints for implicit types:
如何使IntelliJ IDEA仅在悬停时显示推断的局部变量的Java类型提示?

Use show type info on expression you want to see the type for.

Shortcut on windows Ctrl+Shift+P
如何使IntelliJ IDEA仅在悬停时显示推断的局部变量的Java类型提示?

huangapple
  • 本文由 发表于 2020年10月20日 05:22:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/64435253.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定