嵌入式c++学习 静态成员静态成员函数
Posted 文某9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了嵌入式c++学习 静态成员静态成员函数相关的知识,希望对你有一定的参考价值。
成员语法
class w
public:
static int a;
;
int w::a=10;
访问
w ccc;
ccc.a=10;
w::a=20;
权限是公有内外可访问,权限是私有内外不可访问
函数语法
class w
public:
static int a;
static void fun()
a=100;
cout<<"静态成员函数调用"<<endl;
;
int w::a=10;
int main()
w ccc;
通过对象来访问静态成员函数
ccc.wenmou();
通过类名来访问静态成员函数
w::wenmou();
system("pause");
return 0;
静态成员函数只能调用静态成员变量
以上是关于嵌入式c++学习 静态成员静态成员函数的主要内容,如果未能解决你的问题,请参考以下文章