NL.4: Maintain a consistent indentation style
NL.4:保持一致的缩进样式
Reason(原因)
Readability. Avoidance of "silly mistakes."
可读性。避免“愚蠢的错误”。
Example, bad(反面示例)
代码语言:javascript复制int i;
for (i = 0; i < max; i); // bug waiting to happen
if (i == j)
return i;
Note(注意)
Always indenting the statement after if (...), for (...), and while (...) is usually a good idea:
总是在if(...),for(...)和while(...)之后缩进语句通常是一个好主意:
代码语言:javascript复制if (i < 0) error("negative argument");
if (i < 0)
error("negative argument");
Enforcement(实施建议)
Use a tool.
使用工具。
原文链接
https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#nl4-maintain-a-consistent-indentation-style