摘要: ``` /** * 测试标识符的用法 * @author Hank * */ public class TestIdentifer { public static void main(String[] args) { int a123 = 1; // int 123abc=2; //数字不能开头 int $a = 3; int _abc = 4; //int #a... 阅读全文
posted @ 2019-06-22 19:15 hank-li 阅读(139) 评论(0) 推荐(0) 编辑
摘要: ``` /** * 用来测试注释的用法(包含:多行注释、单行注释、文档注释) * @author Hank * */ public class TestComment { /** * 这是程序的入口 * @param args 参数 */ public static void main(String[] args/* args是参数,可以更改*/ ) { System... 阅读全文
posted @ 2019-06-22 19:11 hank-li 阅读(142) 评论(0) 推荐(0) 编辑
摘要: Option + Command + X: 运行 Command + O:显示大纲 Command + 1:快速修复 Command + D:删除当前行 Command + Option + ↓:复制当前行到下一行 Command + Option + ↑:复制当前行到上一行 Option + ↓: 阅读全文
posted @ 2019-06-22 11:44 hank-li 阅读(657) 评论(0) 推荐(0) 编辑