今天有人问我空类的sizeof会输出什么,把我难住了,特地记录一下。
我在ubuntu使用g++进行了测试。 代码如下:
#include <iostream>
class Test{};
int main(int argc, char *argv[])
{
Test a, b;
std::cout << "sizeof(test) is: " << sizeof(Test) << std::endl;
std::cout << "the addr of a is: " << &a << std::endl;
std::cout << "the addr of b is: " << &b << std::endl;
return 0;
}
/*
output:
sizeof(test) is: 1
the addr of a is: 0x7ffcc2eaf626
the addr of b is: 0x7ffcc2eaf627
*/
结论
可以看到空类占用一个字节的内存,且可以被实例化。我这里测试对象和对象之间相差也同样相差一个字节。因为空类可以实例化(其实实例化也没用,编译器会优化掉这个问题的),因此需要为实例化对象保留一个字节的内存空间。如果空类作为基类时,其所占用内存大小就为0了。