命名风格:
1)下划线风格
int student_age; (一般用于变量名、函数名)
2)小驼峰风格
int studentAge; (一般用于变量名、函数名)
3)大驼峰风格
class StudentAge; (一般用于“类名”)
4)全部大写 (一般用于宏)
#define MAX_AGE 30
S2_命名风格
原文:https://www.cnblogs.com/lvcunda/p/12117963.html