IDE快捷键

1.修改
函数

ctrl  shift  u            upper 单词 大小写转换(适用于常量)优化

ctrl F6                    change Methodspa

ctrl shift F6            change Class Nameget

shift F6                  change variable
it


2.查找io

ctrl shift F               find in pathfile

ctrl shift N               find file Name语法

ctrl N                       find Class方法

ctrl F12                   find Method in Class文件

shift shift                 find


3.视图

ctrl shift -          缩Funcation

ctrl shift +         展开Funcation

Alt 上                上跳一个Function

Alt 下                下跳一个Function

Alt 左                 上个文件

Alt 右                 下个文件

ctrll 左               后退一个单词

ctrl 右                前进一个单词

end                   行尾

home                行首

ctrl W                选中代码块

ctrl alt u             生成uml图


4.插入

ctrl J                  经常使用语法

eg:sout            System.out.println();
        ite               for (Integer integer : list){}

ctrl alt T              抱住当前函数块           eg:if try synchronized

ctrl alt C              提取常量

alter Insert           插入getter,setter,constructor

ctrl   O                 重写方法

alter 回车             补齐


5.优化

ctrl alt L                格式化当前类