eclipse里面的常用快捷键:代码实战
1 package com.study.lgs; 2 3 import java.awt.List; 4 import java.io.FileInputStream; 5 import java.io.FileNotFoundException; 6 import java.io.FileOutputStream; 7 import java.util.HashSet; 8 import java.util.Set; 9 10 public class Demo1 { 11 public static String GG="aaa"; //全局常量必须大写 12 public static void main(String[] args) { 13 // TODO Auto-generated method stub 14 // 快捷键的使用和配置 15 // 1、alt+/ 内容提示 配置步骤:window-preferences-在type filter text中输入key即可执行配置 16 try { 17 FileInputStream fis = new FileInputStream(""); 18 } catch (FileNotFoundException e) { 19 // TODO Auto-generated catch block 20 e.printStackTrace(); 21 } 22 // 2、ctrl+1快速修复错误 不管遇到什么错误首先按这个快捷键 23 List l = new List(); 24 try { 25 FileOutputStream fos = new FileOutputStream(""); 26 } catch (FileNotFoundException e) { 27 // TODO Auto-generated catch block 28 29 e.printStackTrace(); 30 } 31 // 3、ctrl+shift+o 快速导入所需包 32 Set s = new HashSet(); 33 34 //4、ctrl+shift+f 格式化代码块自动排版 35 //5、按住Ctrl 鼠标移到相应的类上去点击即可查看源代码 36 //6、alt+方向键 跟踪源代码时返回之前的跟踪或者之后的跟踪 37 //7、ctrl+shift+/ 添加块注释 Ctrl+/ 添加行注释(再按一次去掉注释) 38 //ctrl+shift+ 去掉块注释 39 /*List l = new List(); 40 try { 41 FileOutputStream fos = new FileOutputStream(""); 42 } catch (FileNotFoundException e) { 43 // TODO Auto-generated catch block 44 45 e.printStackTrace(); 46 }*/ 47 //8、F2 定位方法和错误提示说明 48 Set s1=new HashSet(); 49 s1.add("aaa"); 50 //9、重置透视图 eclipse窗口不小心被你拖得稀烂的时候 这样 window—Reset Perspective即可恢复最初的模样 51 //10、Ctrl+shift+x 将字母变为大写 全局常量必须大写 52 // Ctrl+shift+y 将字母变为小写 53 //ctrl+alt+向下键 复制行(有些不能使用) 54 System.out.println("aaa"); 55 //11、输入语句的关键字 然后按alt+/ 即可输出整条语句 如syso+alt+/ 56 System.out.println(); 57 //12、alt+上下键 切换上下行的位置 58 System.out.println("haha"); 59 System.out.println("heihei"); 60 //13、Ctrl+T 查看类的继承关系 61 Set s2=new HashSet(); 62 //14、查看源代码 (1)ctrl+鼠标点击相应的类 (2) ctrl+shift+T 输入你要查看的类 63 //15、ctrl+shift+L 查看eclipse里面的所有快捷键 64 } 65 66 }