一、使用Eclipse编写Java快捷键
- Eclipse中的快捷键:
- 1.补全代码的声明:alt + /
- 2.快速修复: ctrl + 1
- 3.批量导包:ctrl + shift + o
- 4.使用单行注释:ctrl + /
- 5.使用多行注释: ctrl + shift + /
- 6.取消多行注释:ctrl + shift + \
- 7.复制指定行的代码:ctrl + alt + down 或 ctrl + alt + up
- 8.删除指定行的代码:ctrl + d
- 9.上下移动代码:alt + up 或 alt + down
- 10.切换到下一行代码空位:shift + enter
- 11.切换到上一行代码空位:ctrl + shift + enter
- 12.如何查看源码:ctrl + 选中指定的结构 或 ctrl + shift + t
- 13.退回到前一个编辑的页面:alt + left
- 14.进入到下一个编辑的页面(针对于上面那条来说的):alt + right
- 15.光标选中指定的类,查看继承树结构:ctrl + t
- 16.复制代码: ctrl + c
- 17.撤销: ctrl + z
- 18.反撤销: ctrl + y
- 19.剪切:ctrl + x
- 20.粘贴:ctrl + v
- 21.保存: ctrl + s
- 22.全选:ctrl + a
- 23.格式化代码: ctrl + shift + f
- 24.选中数行,整体往后移动:tab
- 25.选中数行,整体往前移动:shift + tab
- 26.在当前类中,显示类结构,并支持搜索指定的方法、属性等:ctrl + o
- 27.批量修改指定的变量名、方法名、类名等:alt + shift + r
- 28.选中的结构的大小写的切换:变成大写: ctrl + shift + x
- 29.选中的结构的大小写的切换:变成小写:ctrl + shift + y
- 30.调出生成getter/setter/构造器等结构: alt + shift + s
- 31.显示当前选择资源(工程 or 文件)的属性:alt + enter
- 32.快速查找:参照选中的Word快速定位到下一个 :ctrl + k
- 33.关闭当前窗口:ctrl + w
- 34.关闭所有的窗口:ctrl + shift + w
- 35.查看指定的结构使用过的地方:ctrl + alt + g
- 36.查找与替换:ctrl + f
- 37.最大化当前的View:ctrl + m
- 38.直接定位到当前行的首位:home
- 39.直接定位到当前行的末位:end
二、代码示例
代码如下(示例):
package com.mydemo.java;
import java.sql.Date;
import java.util.ArrayList;
import java.util.HashMap;
public class EclipseKeys {
final double PROJECT_ACCOUNT_ID = 3.14;
public static void main(String[] args) {
String s = new String();
String str = new String();
char c = str.charAt(0);
int num = 1;
ArrayList list123 = new ArrayList();
list123.add(123);
list123.add(123);
list123.add(123);
list123.add(123);
list123.add(123);
list123.add(123);
HashMap map = null;
map = new HashMap();
Date date = new Date(32423324L);
HashMap map1 = null;
}
}
class User{
private int id;
private String name;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public User() {
}
public User(int id, String name) {
this.id = id;
this.name = name;
}
}
总结
熟练掌握Eclipse快捷键可以快速编写java程序,刚入门的同学一定要多练多记。
功能 | 快捷键 |
---|---|
执行(run) | alt+r |
提示补全 (Class Name Completion) | alt+/ |
单行注释 | ctrl + / |
多行注释 | ctrl + shift + / |
向下复制一行 (Duplicate Lines) | ctrl+alt+down |
删除一行或选中行 (delete line) | ctrl+d |
向下移动行(move statement down) | alt+down |
向上移动行(move statement up) | alt+up |
向下开始新的一行(start new line) | shift+enter |
向上开始新的一行 (Start New Line before current) | ctrl+shift+enter |
如何查看源码 (class) | ctrl + 选中指定的结构或ctrl + shift + t |
万能解错/生成返回值变量 | alt + enter |
退回到前一个编辑的页面 (back) | alt + left |
进入到下一个编辑的页面(针对于上条) (forward) | alt + right |
查看继承关系(type hierarchy) | F4 |
格式化代码(reformat code) | ctrl+shift+F |
提示方法参数类型(Parameter Info) | ctrl+alt+/ |
复制代码 | ctrl + c |
撤销 | ctrl + z |
反撤销 | ctrl + y |
剪切 | ctrl + x |
粘贴 | ctrl + v |
保存 | ctrl + s |
全选 | ctrl + a |
选中数行,整体往后移动 | tab |
选中数行,整体往前移动 | shift + tab |
查看类的结构:类似于 eclipse 的 outline | ctrl+o |
重构:修改变量名与方法名(rename) | alt+shift+r |
大写转小写/小写转大写(toggle case) | ctrl+shift+y |
生成构造器/get/set/toString | alt +shift + s |
查看文档说明(quick documentation) | F2 |
收起所有的方法(collapse all) | alt + shift + c |
打开所有方法(expand all) | alt+shift+x |
打开代码所在硬盘文件夹(show in explorer) | ctrl+shift+x |
生成 try-catch 等(surround with) | alt+shift+z |
局部变量抽取为成员变量(introduce field) | alt+shift+f |
查找/替换(当前) | ctrl+f |
查找(全局) | ctrl+h |
查找文件 | double Shift |
查看类的继承结构图(Show UML Diagram) | ctrl + shift + u |
查看方法的多层重写结构(method hierarchy) | ctrl+alt+h |
添加到收藏(add to favorites) | ctrl+alt+f |
抽取方法(Extract Method) | alt+shift+m |
打开最近修改的文件(Recently Files) | ctrl+E |
关闭当前打开的代码栏(close) | ctrl + w |
关闭打开的所有代码栏(close all) | ctrl + shift + w |
快速搜索类中的错误(next highlighted error) | ctrl + shift + q |
选择要粘贴的内容(Show in Explorer) | ctrl+shift+v |
查找方法在哪里被调用(Call Hierarchy) | ctrl+shift+h |