标签:str 静态 printf 拷贝 oid void int 静态成员 变量
1、在类所有实例中静态成员变量和静态成员函数都只有一份拷贝
2、静态成员函数不能调用非静态成员,非静态成员函数可以调用静态成员
3、静态成员变量在使用前要初始化
一、静态成员变量的访问
class B { public: static int a; }; int B::a=0;//必须要先初始化 int main(){ cout<<B::a<<endl; return 0; }
二、静态成员函数的访问
class B { public: static void a(){ printf("B\n"); } }; int main(){ B::a(); return 0; }
标签:str 静态 printf 拷贝 oid void int 静态成员 变量
原文地址:https://www.cnblogs.com/hustwx/p/9561290.html