code-rules.md 209 B

代码规则

Java 规范

  • 所有 if/else/for/while 语句必须使用大括号 {},即使只有一行代码
  • 禁止省略大括号的写法,如 if (x) return; 必须写成 if (x) { return; }