类的静态成员,属于类,也属于对象,但终归属于类。
static修饰数据成员需要初始化,不可以类内初始化
只能类外初始化,需要类名空间,且,不需要加static
#include <iostream> class A { public: int _m, _n; static int _share = 100; }; int main() { A a; std::cout << a._share; return 0; }
会提示错误:/home/zzz/Workspace/test/cplusplus/test_2/static.cpp:7:18: error: ISO C++ forbids in-class initialization of non-const static member ‘A::_share’
正确的初始化方式 #include <iostream> class A { public: int _m, _n; static int _share; }; int A::_share = 100; int main() { A a; std::cout << a._share << std::endl; return 0; }
类的声明和实现分开的时候,在.cpp中初始化,写在include的下方
satic声明的数据成员不占用类对象的大小,存储在data rw段
即可以通过对象访问也可以不通过对象,直接通过类型访问(cout << A::_share << endl)
static修饰函数,目的为了管理静态变量
static const 在类内初始化
static const int a = 100;