IntelliJ IDEA使用技巧

  快捷键的使用      

1.文本编辑
删除 ctr + y
复制 ctr + D
2.智能提示
提示 ctr + space
智能提示 ctr + shift + space
完成当前语句 ctr + shift + enter
建议提示为参数 ctr + alt + P
对代码重新排列格式 Ctrl + Alt + L
组织导入对imports进行优化 Ctrl + Alt + O

3.位置定位
定位到下一个或上一个错误 F2 / Shift + F2
定位文件头 ctr+G (定位到文件行数)
定位文件尾 ctr+G
定位到代码块开始 ctr + [
定位到代码块结束 ctr + ]
回到最近的窗口 F12
回到之前的文件 alt + left
回到之后的文件 alt + right
定位到最后编辑位置 Ctrl + Shift + Backspace
从tool window或其他window切换到文件编辑 esc
关闭最近打开的窗口 shift + esc

4.类、方法、文件定位
查找类 ctr + N
查找文件 Ctrl + Shift + N
符号定位 Ctrl + Alt + Shift + N
查看文件结构 ctrl + F12
最近打开的文件 ctr + E
定位下一个方法 alt + down
定位上一个方法 alt + up
查看方法参数信息 ctr + p
查看方法、类的doc ctr + Q

5.类、方法的结构查看、定位
跳到类或方法的声明 ctr + B
定位到类的父类、接口 ctr + U
查看类的继承结构 ctr + H
查看方法的继承结构 ctr + shift + H
查看类或方法被调用情况 ctr + alt +H
原地参看类、方法的声明 Ctrl + Shift + I

6.运行与调试
Ctrl + F9 Make project (compile modifed and dependent)
Ctrl + Shift + F9 Compile selected file, package or module
Alt + Shift + F10 Select configuration and run
Alt + Shift + F9 Select configuration and debug
Shift + F10 Run
Shift + F9 Debug
Ctrl + Shift + F10 Run context configuration from editor
Debugging
F8 Step over
F7 Step into
Shift + F7 Smart step into
Shift + F8 Step out
Alt + F9 Run to cursor
Alt + F8 Evaluate expression
F9 Resume program
Ctrl + F8 Toggle breakpoint
Ctrl + Shift + F8 View breakpoints

二 IDEA和Eclipse的区别   

IDEA 中 “new Project”对应的是Eclipse的“workspace”,而“new Module”才是创建一个工程;

IDEA 不会自动编译和加载CLASS,ECLIPSE是自动的,

IDEA可以通过Mode Eclipse插件来实现自动加载和编辑Class;

IDEA 编辑的文件是自动保存的,不能设置为手动保存。

三 IDEA常用设置

1.改变编辑文本字体大小
FILE -> SETTINGS -> EDITOR COLORS & FONTS -> FONT -> SIZE
2.用*标识编辑过的文件
Editor –> Editor Tabs
在IDEA中,你需要做以下设置, 这样被修改的文件会以*号标识出来,你可以及时保存相关的文件。"Mark modifyied tabs with asterisk"
3.显示行号
如何显示行号:Settings->Editor->Appearance标签项,勾选Show line numbers
4.自定义键盘快捷方式
如果默认代码提示和补全快捷键跟输入法冲突,如何解决:Settings->Keymap
5.如何让光标不随意定位
Settings->Editor中去掉Allow placement of caret after end of line。

 

你可能感兴趣的:(intelliJ idea)