056_IDEA中内容辅助键和快捷键

 1 package come.itheima;
 2 /*
 3     快速生成语句
 4         快速生成main()方法:psvm,回车
 5         快速生成输出语句:sout,回车
 6      内容辅助键
 7         Ctrl+Alt+space(内容提示,代码补全等)
 8       快捷键:
 9         注释:
10             单行:选中代码,Ctrl+/,再来一次,就是取消
11             多行:选中代码,Ctrl+Shift+/,再来一次,就是取消
12          格式化:
13             Ctrl+Alt+L
14  */
15 public class OparatorDemo {
16     public static void main(String[] args) {
17         System.out.println("helloWorld");
18     }
19 }

 

posted @ 2020-09-01 21:00  找不到北的北  阅读(299)  评论(0)    收藏  举报