1、文本编辑
删除选中行 ctr + y
复制选中行 ctr + d
剪贴选中行 ctr + x
2、智能提示
提示 ctr + space
智能提示 ctr + shift + space
完成当前语句 ctr + shift + enter
建议提示为参数 ctr + alt + p
规范代码格式 ctrl + Alt + l(小写L)
规范代码格式 ctrl + Alt + o
3、位置定位
定位到下一个或上一个错误 F2 / Shift + F2
定位到文件指定行数 ctr+G
定位到代码块开始 ctr + [
定位到代码块结束 ctr + ]
回到最近的窗口 F12
回到之前的文件 alt + left
回到之后的文件 alt + right
定位到最后编辑位置 Ctrl+Shift+Backspace
关闭最近打开的窗口 shift + esc
4、类、方法、文件定位
查找类 ctr + N
查找文件 Ctrl + Shift + N
符号定位 Ctrl + Alt + Shift + N
查看文件结构 ctrl + F12
最近打开的文件 ctr + E
定位下一个方法 alt + down
定位上一个方法 alt + up
查看方法参数信息 ctr + p
查看方法、类的doc ctr + Q
5、类、方法的结构查看、定位
跳到类或方法的声明 ctr + b
定位到类的父类、接口 ctr + u
查看类的继承结构 ctr + h
查看方法的继承结构 ctr + shift + h
查看类或方法被调用情况 ctr + alt + h
原地参看类、方法的声明 Ctrl + Shift + I
查看调用方法的实现 ctrl + Alt + b
6、运行与调试
Ctrl + F9 Make project (compile modifed and dependent)
Ctrl + Shift + F9 Compile selected file, package or module
Alt + Shift + F10 Select configuration and run
Alt + Shift + F9 Select configuration and debug
Shift + F10 Run
Shift + F9 Debug