孝顺小刺猬

文章
5
资源
0
加入时间
2年11月11天

C++空类的大小

C++空类的大小为什么不为0?先来看测试程序的输出。#include <iostream>using namespace std;class NoMembers{};int main(){ NoMembers n; // Object of type NoMembers. cout << "The size of an object of empty class is: "