idea开发工具必备快捷键认识

idea开发 必备快捷键配置

file -> setting -> keymap ->

ctrl + d 需要设置 删除当前行(输入delete查找)

ctrl + alt + 向下光标 需要设置 复制当前行

alt + / 默认 代码补全

ctrl + /

main + tab 直接添加main方法

自动导入类

​ 光标移动到类名处,按alt + Enter键导入类

自动调整格式(Auto Import)

​ ctrl + alt + L

快捷运行(run)

自行配置

​ alt + R

生成构造器 - [提高开发效率] constructor

默认

​ Alt + insert

查看类的继承关系

​ ctrl + H

定位到方法-[学习继承后,非常有用]

​ ctrl + B

自动分配变量名-[非常nb]-注意,必须在main中使用

​ new Scanner(System.in).var 按回车后

​ Scanner scanner = new Scanner(System.in);

模板templates(必用)

file -> settings -> editor -> Live templates ->

查看模板快捷键/可以自己增加模板

系统默认模板

​ fori 自动添加for i循环模板

​ sout System.out.println(); //建议改为S

上一篇:idea快捷键


下一篇:IntelliJ Idea 常用快捷键列表