static关键字
1,static 成员变量
static 成员变量不随着对象的创建而开辟内存空间。也就是说,不管从哪个对象去看static成员变量,都是一样的。
2, static 成员方法
static 成员方法里不可以调用非static 成员方法。
非static 成员方法里可以调用static 成员方法。
原因:非static 成员方法里是没有this指针的,所以在里面调用非static 成员方法时,无法传递this指针。static 成员方法不需要this指针。
重点:初始化static成员变量,要在类的外面。
#includeusing namespace std; class Test{ friend void fun(const Test &t); public: Test(int d = 0) : data(d){ count++; } ~Test(){ count--; } private: int data; static int count; }; void fun(const Test &t){ cout <
总结
以上所述是小编给大家介绍的c/c++ 中的static关键字,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!