IDE快捷键

1.修改

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

ctrl F6                    change Method

ctrl shift F6            change Class Name

shift F6                  change variable


2.查找

ctrl shift F               find in path

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                格式化当前类


你可能感兴趣的:(IDE)