在头文件???.h中定义:static int master;
在对应.cpp文件中类的外部声明(不要用static,初始化与否无所谓):
注意要加上作用域标识符。
int Student::master;
class Student{
.........
}
类的静态成员
原文:https://www.cnblogs.com/mktest123/p/12104960.html