正文
一个空的类占多少内存
看代码
#define CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
// 在c++ 中类内成员变量和成员函数分开存储
class Person
{
};
void test()
{
Person p;
// 空对象占的内存为 1 ,是为了区分空对象占内存的位置
cout << " sizeof of p " << sizeof(p) << endl;
}
int main()
{
test();
}
每个空的对象也有一个独一无二的内存地址
如果类中有成员变量呢
看代码
#define CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
// 在c++ 中类内成员变量和成员函数分开存储
class Person
{
int m_A;
};
void test()
{
Person p;
cout << " sizeof of p " << sizeof(p) << endl;
}
int main()
{
test();
}
上面会显示多少的内存呢,是四个还是五个(加上之前空的时候占有的一个),还是八个(内存对齐)?
答案是 四个 ,之前占有的一个字节只是为了标记
如果有静态成员变量 和 成员函数呢
#define CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
// 在c++ 中类内成员变量和成员函数分开存储
class Person
{
int m_A;
static int m_B;
void fun()
{
}
};
void test()
{
Person p;
cout << " sizeof of p " << sizeof(p) << endl;
}
int main()
{
test();
}
上面的结果会是多少呢
答案还是 4 ,为什么呢?
静态成员函数,不属于类对象上,非静态成员函数也不属于类对象