C++学习第八十一篇
/*
* 静态成员函数:
* 所有对象共享同一个函数
* 静态成员函数只能访问静态成员变量
*/
#include
#include
using namespace std;
class Person
{
public:
static void func()
{
cout << "func调用" << endl;
m_A = 100;
//m_B = 100;//错误,静态成员函数不可以非静态成员变量
}
static int m_A;//静态成员变量
int m_B;//非静态成员变量
private:
//静态成员函数也是有访问权限的
static void func2()
{
cout << "func2调用" << endl;
}
};
int Person::m_A = 10;
void test01()
{
//静态成员函数两种访问方式
//1、通过对象
Person p1;
p1.func();
//2、通过类名
Person::func(
C++学习第八十一篇最先出现在Python成神之路。
版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/7763.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论