/*
* 静态成员
* 静态成员就是在成员变量和成员函数前加上关键字static,称为静态成员
* 静态成员分为:
* 1、静态成员变量
* 所有对象共享同一份数据
* 在编译阶段分配内存
* 类内声明,类外初始化(必须实现)
* 2、静态成员函数
* 所有对象共享同一个函数
* 静态成员函数只能访问静态成员变量
*/
#include<iostream>
#include<string>
using namespace std;
class Person
{
public:
static int m_A;//静态成员变量,类内声明
private:
static int m_B;//静态成员变量也是有访问权限的
};
int Person::m_A = 10;//类外初始化
int Person::m_B = 10;
void test01()
{
//静态变量的两种访问方式
//1、通过对象
Person p1;
p1.m_A = 100;
cout << "p1.m_A = " << p1.m_A << endl;
Person p2;
p2.m_A = 200;
cout << "p2.m_A = " << p2.m_A << endl;//共享同一份数据
cout << "p1.m_A = " << p1.m_A << endl;
//2、通过类名
cout << "m_A = " << Person::m_A << endl;
//cout << "m_B = " << Person::m_B << endl;//私有权限类外无法访问
}
int main()
{
test01();
system("pause");
return 0;
}
07-01
2946
10-18
1246
02-25
1485
11-29
2031
09-09
255
08-06
5463