最近一直纠结如何命名函数和变量名,于是搜索了相关命名内容
在变量名前加上"_"表示
例如:
_curValue;
_oldValue;
_minValue;
在变量名前加g_
g_curValue
static int s_initValue;
void SetValue();
void GetValue();