-
在类中用
static
关键字修饰的成员函数是静态成员函数。它属于类,而不是类的某个具体对象
class Student
{
public:
static int studentCount;
static void incrementCount()
{
studentCount++;
}
};
int Student::studentCount = 0;
在类中用static
关键字修饰的成员函数是静态成员函数。它属于类,而不是类的某个具体对象
class Student
{
public:
static int studentCount;
static void incrementCount()
{
studentCount++;
}
};
int Student::studentCount = 0;