C++类中的静态成员变量与静态成员函数的使用

Posted hu983

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++类中的静态成员变量与静态成员函数的使用相关的知识,希望对你有一定的参考价值。

代码:

 1 #include <iostream> 
 2 #include <string>
 3 #include <cstdio>
 4 
 5 using namespace std; 
 6 
 7 class A{
 8     public:
 9         static int a;
10         //static int a = 0; //编译不通过,无法在类内初始化
11         int b;
12         static void func1(){
13             cout<<"static func"<<endl;
14             a++;
15             //b++;
16         }
17         void func2(){
18             cout<<"normal func"<<endl;
19             a++;
20             b++;
21         }
22 }c;
23 int A::a = 0; //编译通过可以在类外初始化
24 
25 int main(int argc,char* argv[]){
26 
27     c.func1();
28     c.func2();
29 
30     return 0;
31 }

输出:

static func
normal func

 分析:

1、静态成员变量不能在类中初始化,需要在类外初始化。

2、静态成员函数只能访问静态成员变量,普通成员函数则没有这个限制。

3、静态成员函数不能为虚函数。

以上是关于C++类中的静态成员变量与静态成员函数的使用的主要内容,如果未能解决你的问题,请参考以下文章

C++类中的静态成员函数以及静态成员变量

C++类中的静态成员函数以及静态成员变量

C++类中的常成员和静态成员

c++中静态成员变量和静态成员函数(笔试经历)

浅谈C++类中的static

C++类和对象下