通过 Window > Preferences > 查询 "Content Assist" 在 java 节点下 “Auto Activation for Java", 里面默认为 . 可以填入所有26个字母
通过 Window > Preferences > 查询 "Keys" 可以找到设置快捷键的地方。
Ctrl Shift L: 显示所有快捷键
F2: 查看方法说明
Content Assist: 默认是 Ctrl+Space,与中文输入法冲突。一般我设置为 Alt+F1
Ctrl 1: Quick Fix。也就是当你写一个东西下面被标了红线或黄线,说明有错误或警告。从提示中选择一个。
Ctrl Alt 向上或者向下箭头:复制目前被选中的代码行
Ctrl D: 删除被选中的代码行
Ctrl Shift O: 为目前所写的方法导入相应的包。
Ctrl /: 注释被选中的代码行。再次使用则解注释。
Ctrl Shift F: 格式化代码
Alt <: 返回来时候的路径 (Backward history: Move backward in the editor navigation history)
Alt >: 前往刚才走过的路径(Forward history: Move forward in the editor navigation history)
Ctrl Shift /: 块状注释
Ctrl Shift \: 块状解注释
Ctrl Shift X: 把选择的文本变成大写
Ctrl ShiftY: 把选择的文本变成小写
Ctrl Alt Down: Copy Lines (Duplicates the selected lines and moves the selection to the copy)
Ctrl Alt Up: Copy Lines (Duplicates the selected lines and doesn't move the selection)
Ctrl T: 查看类的继承关系
查看源代码: 按住 Ctrl, 鼠标移过去就行了。 如果使用 Ctrl Shift T: 可以弹出一个框让你输入你要看源码的方法
Alt Up or Down: Move lines up or down
Debug 过程中:
F5: step in
F6: step over
F7: 跳出