IntelliJ自动创建Visual Studio中的私有字段/方法?

时间:2015-05-06 11:16:41

标签: java visual-studio visual-studio-2012 intellij-idea

在Visual Studio 2012中,我可以键入类似aString = ''的内容。此变量尚未声明,并且通过按ctrl + .,IDE非常精彩,可以创建名为String类型为aString的私有数据名称。

是否有一项功能在IntelliJ中反映了这一点?

我在https://www.jetbrains.com/idea/features/code_assistance.html找到了自动插入方法的选项,但无法找到与私有字段相关的任何内容。

在任何人建议显而易见之前,我无法访问IDE:)

2 个答案:

答案 0 :(得分:2)

绝对

如果你写aString =""然后点击alt-enter你将获得一个创建字段(默认为私有)的选项以及其他几个选项。

enter image description here

答案 1 :(得分:2)

另一种方法是先输入""然后再输入.var

这称为Postfix Code Completion,非常有用。除.var之外还有许多其他完成。我经常使用.cast postfix完成例如。

像这样使用:

enter image description here

enter image description here

enter image description here

然后你就开始输入变量的名称:

enter image description here

最后,这是你的完整路线:

enter image description here