1.变量命名 (1)成员变量 在变量名前加上""表示或者“m” 例如: _curValue;
_oldValue;
或者用下滑杠连接各个单词。
(2)全局变量 在变量名前加g_
g_curValue
(3)静态变量 static int s_initValue;
2.函数命名 void SetValue();
void GetValue();