IntelliJ IDEA 的小技巧 ( mac 版)
码代码
- 缩写功能
一般取首字母即可
如 public static void main(String[] args){}
可以用 psvm
出来
- 加 surround,如 if、catch
选中目标代码段 command + option + t
再选择 surround 类型
- 格式化代码
选中目标代码段 command + option + l
- 删除一行
command + d
调试
- 跳转到上(下)一次位置
上一次 command + option + ←
下一次 command + option + →
- 查看类继承关系
选中类名 control + h
- 查看类或者方法的调用情况
选中类或者方法名 control + option + h
或者 command + 左键
- 全局查找文件
shift + shift
- 全局查找内容
command + shift + f