欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Eclipse 常用快捷键

程序员文章站 2024-01-03 21:30:04
...

1、内容补全

alt + /

如:

  • 输入main后,按alt + / 后自动补全main方法

Eclipse 常用快捷键

Eclipse 常用快捷键

  • 输入sysout后,按alt + / 后自动补全 System.out.println() 方法

Eclipse 常用快捷键

Eclipse 常用快捷键


2、快速修复

ctrl + 1

如:光标移动到报错的地方,按下ctl + 1后出现修复提示

Eclipse 常用快捷键


3、移动代码

alt + 上下方向键

如:光标移动到需要移动的行,然后按住alt + ↑ 或alt + ↓ 使该行代码上移或下移。


4、向左/向右推进代码

向右推进:选中代码后按 tab
向左推进:选中代码后按 shift + tab

5、批量注释代码

  • 块注释
Windows系统:选中代码后按 ctrl + shift + /
MacOs系统:选中代码后按 ctrl + command + /

Eclipse 常用快捷键

Eclipse 常用快捷键

  • 取消块注释
Windows系统:选中代码后按 ctrl + shift + \
MacOs系统:选中代码后按 ctrl + command + \
  • 行注释/取消行注释
Windows系统:选中代码后按 ctrl + \
MacOs系统:选中代码后按 command + \

Eclipse 常用快捷键


6、代码格式化

ctrl + shift + f

Eclipse 常用快捷键

Eclipse 常用快捷键


7、批量导入所有欠缺的包

ctrl + shift + o

8、删除当前行

Windows系统:选中代码后按 ctrl + D
MacOs系统:选中代码后按 command + D

9、设置自动生成 构造函数 的快捷键

1、Windows系统:

  • 点击在Windows里找到Preference选项

Eclipse 常用快捷键

  • 搜索keys

Eclipse 常用快捷键

  • 搜索constr,在Binding中输入快捷键

Eclipse 常用快捷键

2、MacOs系统:

  • 打开偏好设置

Eclipse 常用快捷键

  • 选择 后输入“构造”,在绑定中输入快捷键

Eclipse 常用快捷键


10、设置自动生成 get/set方法 的快捷键

1、Windows系统:

  • (与第9点一致)搜索get,在Binding中输入快捷键

2、MacOs系统:

  • (与第9点一致)搜索get,在绑定中输入快捷键

Eclipse 常用快捷键

相关标签: eclipse

上一篇:

下一篇: