标签:style blog color 使用 sp strong on 数据 div
1、类型名和函数名均以大写字母开头的单词组合而成。例如:
class Node; //类名 class LeafNode; //类名 void Draw(void); //函数名 void SetValue(int value); //函数名
2、变量名和参数名采用第一个单词首字母小写而后面的单词首字母大写的单词组合。例如:
BOOL flag; int drawMode;
3、符号常量和宏名用全大写的单词组合而成,并在单词之间用单下划线分隔,注意首尾最好不要使用下划线。例如:
const int MAX = 100; const int MAX_LENGTH = 1024;
4、给静态变量加前缀s_,给全局变量加前缀g_,给类的数据成员加前缀m_。例如:
static int s_initValue; int g_howManyPeople;
标签:style blog color 使用 sp strong on 数据 div
原文地址:http://www.cnblogs.com/mengwang024/p/4148439.html