1、头文件:
#include <math.h> //引用标准库的头文件
#include “OtherHeader.h” // 引用非标准库的头文件
2、命名规则
· 变量的名字应当使用“名词”或者“形容词+名词”。
float fValue;
float fOldValue;
· 类名和函数名用大写字母开头的单词 组合而成,其中类名需加前缀“C”。
class CLeafNode;
void SetValue(int nValue)
· 常量全用大写的字母,用下划线分割单词。
const int MAX_LENGTH = 100;
· 静态变量加前缀“s_”(表示static)
static int s_nInitValue;