我有两个班,如下
class A { }; class B { int a[]; }; int main() { cout << sizeof(A) <<endl; //outputs 1 cout << sizeof(B) <<endl; //outputs 0 return 0; }
我很熟悉,空类的大小是1,但为什么B类的大小是零?
解决方法
GCC允许零长度数组作为扩展名:
http://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html
和:
As a quirk of the original implementation of zero-length arrays,sizeof evaluates to zero.