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 }
原文:https://www.cnblogs.com/zhengqiangchen/p/13598575.html