intellij idea快捷键以及和eclipse快捷键对比,包括win和mac-不定时更新

快捷键对比
快捷键功能 Intellij idea for windwos Intellij idea for mac eclipse

定位到类

Ctrl + B  

ctrl + 鼠标左键

 

F3

删除行

Ctrl + X 剪切

Ctrl + Y 删除行

 

Ctrl + D

查找某个文件

Ctrl + shift + N

双击 Shift

Ctrl + shift + R

格式化代码

Ctrl + alt + L

 

Ctrl + shift + G

单个文件文本替换 Ctrl + R    
全文替换 Ctrl + shift + R    

全文查找指定内容

Ctrl + shift + F

 

Ctrl + H

代码自动补全

Ctrl + J

Alt + /

 

Alt + /

自动生成代码(get、set、toString方法等)

Alt + insert

command + N

Shift + Alt + S

复制当前行到下一行

Ctrl + D

 

Ctrl + Alt + ↓

自动导包(import)

先设置

Settings→Editor→General→Auto Import 
然后勾选Add unambiguous imports on the fly以及Optimize imports on the fly

 

导包快捷键  Ctrl + Alt + O

 

Ctrl + shift + O

查看(方法/类/属性) 在哪里被调用 alt + F7   ctrl + shift + G
查看街口方法的实现

ctrl + alt +B

  在方法上按住 Ctrl + 鼠标左键
返回上次查看代码位置 ctrl + alt + ←   alt + ←
获取全类名

复制时:

 类名上右击 + copy Refrence 或者ctrl + shift + alt + c

粘贴时:

 ctrl + shift + alt + V

   类名上右击 copy Qualifine name
单行注释/多行注释

ctrl + /

ctrl + shift + /

  ctrl + shift + C
自动补全返回值 ctrl + alt +  V   ctrl + 2 + L
(断点调试)单步执行 F8   F6
(断点调试)全速执行 F9   F8

(断点调试)查看变量只

查看方法返回值

alt + F8   ctrl + i
代码上移/下移一行

Shift + alt + ↑  上移

Shift + alt + ↓  下移

 

alt + ↑  上移

alt + ↓  下移

查看方法的参数信息

ctrl + P

按住 ctrl 然后将鼠标移到方法上面就可以看到了

  鼠标移到方法上面
文件重命名 shift + F6   F2
查询下一个选中的文本

F3  循环查询

ctrl + F3 向下查询
shift + F3 向上查询

  ctrl + K
大小写转换 ctrl + shift + U   ctrl + X
格式化代码 ctrl + alt + L   ctrl + shift + F
列出当前类的所有方法

alt + 7

ctrl + F12

  ctrl + o
抛出非运行时异常 alt + 回车,选择add exception to method siguature    
自动生成创建对象 写完new关键字后 ,按下ctrl + alt + 空格    
查找行 ctrl + G   ctrl + l
       
       

 

你可能感兴趣的:(快捷键)