Intellj Idea 快捷键入门

Posted chenruiyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Intellj Idea 快捷键入门相关的知识,希望对你有一定的参考价值。

Intellj IDEA快捷键入门

时间: 2019/11/29

系统: Win10系统

版本 :Intellj Idea 2018.3

背景:

入手Intellj idea 两个月了,总结一下一些常用的快捷键,防止遗忘
内容:
1.自动补全

最基本的的有sout,psvm,fori等自动生成System.out.println,public static void main,for().

strList.for+tab 生成for(String str:strList)

快捷键1:Ctrl+Space(空格),基本代码补全:类名|方法名|变量名,即把未完成的单词

补全场景:  StringBu  ---> StringBuffer

? 参考:https://www.cnblogs.com/hugogoos/p/9671557.html

快捷键2:Ctrl+Shift+Space,(从左到右)根据类型智能补全代码

补全场景:  StringBuffer buffer = new  

? 参考:https://www.cnblogs.com/hugogoos/p/9680200.html

快捷键3:Ctrl+Shift+Enter ,根据代码提示智能完成本行代码,以分号结束

补全场景:  new StringBuff  --->   new StringBuffer( );

快捷键4:Ctrl+Alt+V ,(从右向左)自动补全返回值类型和对象

补全场景:new StringBuffer() --->  StringBuffer sb = new StringBuffer();

快捷键5:Alt+Insert,智能生成getter,setter,tostring,hashcode/equals

快捷键6:Ctrl+Alt+T,智能生成环绕代码即:在选中的代码外部,生成包围的if-else,try-catch,for循环,synchronized代码块

以上是关于Intellj Idea 快捷键入门的主要内容,如果未能解决你的问题,请参考以下文章

Intellj IDEA快捷键

IntellJ IDEA快捷键

IntellJ IDEA快捷键

idea 快捷键 pvsm sout

任务02——安装 Intellj IDEA,编写一个简易四则运算小程序,并将代码提交到 GitHub

任务02——安装 Intellj IDEA,编写一个简易四则运算小程序,并将代码提交到 GitHub