日志16
今天学习了C++类中的静态成员。静态成员属于类本身,而不是某个特定的对象。例如:
cpp复制class Student {
public:
static int count;
Student() { count++; }
};
int Student::count = 0;
静态成员变量可以通过类名直接访问:
cpp复制Student::count = 10;
这对于存储与类相关的全局信息很有用。
今天学习了C++类中的静态成员。静态成员属于类本身,而不是某个特定的对象。例如:
cpp复制class Student {
public:
static int count;
Student() { count++; }
};
int Student::count = 0;
静态成员变量可以通过类名直接访问:
cpp复制Student::count = 10;
这对于存储与类相关的全局信息很有用。
相关推荐