快捷键
全局查找
shift + command + f
查找类(class)
command + o
查找class+file+symbol+action
点击两次shift
复制当前行
command + d
自动代码提示
option + enter
代码格式化
option + command + l
生成代码(构造函数、Getter/Setter方法、equals方法、hashCode方法、toString方法)
command + n
ctrl + enter
快捷键大全图
使用技巧
常用的代码模板
- ifn:生成参数为null的判断代码
- inn:生成参数不为null的判断代码
- psvm:生成main函数
- sout:生成System.out.println();
- souf:生成System.out.printf(“”);
- serr:生成System.err.println();
- prsf:生成private static final
- psf:生成public static final
- psfi:生成public static final int
- psf:生成public static final
- St:生成String
- thr:生成throw new