Code Style for OI
Posted tyqtyq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Code Style for OI相关的知识,希望对你有一定的参考价值。
Code Style for OI
#include
#define
尽量少用#include
能#include <foo>
就不#include "foo"
#if,#endif
等预编译指令
尽量别用,用的话给出与之对应的指令
using
- 不使用
using namespace foo
,如有需要应使用using foo::bar
- 对于
using foo = bar;
不限制
缩进
4格缩进
大括号
大括号不换行才是最优雅的!大括号换行的都是异端!
大括号换行
空格
能用就用
压行
sorry我压行QAQ
以上是关于Code Style for OI的主要内容,如果未能解决你的问题,请参考以下文章
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段
Learning the "PEP 8 -- Style Guide for Python Code" - part 1