IDE 快捷键
大约 2 分钟
Eclipse
- 补全代码的声明: alt + /
- *快速修复: ctrl + 1 **
- 批量导包: ctrl + shift + o
- 使用单行注释: ctrl + /
- 使用多行注释: ctrl + shift + /
- 取消多行注释: ctrl + shift + \
- 复制指定行的代码: ctrl + alt + down 或 ctrl + alt + up
- 删除指定行的代码: ctrl + d
- 上下移动代码: alt + up 或 alt + down
- 切换到下一行代码空位: shift + enter
- 切换到上一行代码空位: ctrl + shift + enter
- 如何查看源码: ctrl + 选中指定的结构 或 ctrl + shift + t
- 退回到前一个编辑的页面: alt + left
- 进入到下一个编辑的页面(针对于上面那条来说的): alt + right
- 光标选中指定的类,查看继承树结构: ctrl + t
- 复制代码: ctrl + c
- 撤销: ctrl + z
- 反撤销: ctrl + y
- 剪切: ctrl + x
- 粘贴: ctrl + v
- 保存: ctrl + s
- 全选: ctrl + a
- 格式化代码: ctrl + shift + f (整理代码)
- 选中数行,整体往后移动: tab
- 选中数行,整体往前移动: shift + tab
- 在当前类中,显示类结构,并支持搜索指定的方法、属性等: ctrl + o
- 批量修改指定的变量名、方法名、类名等: alt + shift + r
- 选中的结构的大小写的切换:变成大写: ctrl + shift + x
- 选中的结构的大小写的切换:变成小写: ctrl + shift + y
- 调出生成 getter/setter/构造器等结构: alt + shift + s
- 显示当前选择资源(工程 or 文件)的属性: alt + enter
- 快速查找:参照选中的 Word 快速定位到下一个 : ctrl + k
- 关闭当前窗口: ctrl + w
- 关闭所有的窗口: ctrl + shift + w
- 查看指定的结构使用过的地方: ctrl + alt + g
- 查找与替换: ctrl + f
- 最大化当前的 View: ctrl + m
- 直接定位到当前行的首位: home
- 直接定位到当前行的末位: end
提示显示的设置:
IDEA
- alt+insert 选择生成构造器,getter、setter方法......
- ctrl+F12 快速找方法
- alt+enter 快速声明对象名,提供解异常的方式
- ctrl+alt+t 将选中的代码用...包围起来
- ctrl+p 将光标放置在()中,显示需要的形参
- ctrl+alt+shift+s 文件-项目结构
- ctrl+shift+方向键 整体移动代码
- alt+←/→ 查看左右的文件
- ctrl+h 选中类,查看类的继承树
- ctrl+shift+z 取消撤销
- ctrl+shift+t (右键代码,GO to Test 选择方法单元测试)单元测试
- shift+F6 重命名
- ctrl+alt+l 快速整理代码
- ctrl+shift+'-/+' 折叠或展开选中的代码
- ctrl+shift+/ 舒服的快速注释
- ctrl+o 重写父类、接口的方法
- sout
- soutv
Powered by Waline v2.15.5