#include <iostream>
using namespace std;
class Person
{
public:
int m_A; // 非静态成员变量 属于类的对象上
static int m_B; // 静态成员变量 不属于类的对象上
void func(){}; // 非静态成员函数 不属于类的对象上
static void func2(){}; // 静态成员函数 不属于类的对象上
// 总结: 只有非静态成员变量属于类的对象上 其余都不属于
};
void test01()
{
Person P;
P.m_A = 100;
cout << sizeof(P) << endl;
}
int main()
{
test01();
cout << "Hello World!" << endl;
return 0;
}