这是合法的 C++ 吗?
struct foo
{
int a[100];
int b[sizeof(a) / sizeof(a[0])];
};
GCC 4.6 接受它,但 MSVC 2012 不接受。对我来说似乎应该没问题,但是一点谷歌搜索没有帮助,我不知道在哪里查看标准。
MSVC 2012 提供以下输出:
error C2327: 'foo::a' : is not a type name, static, or enumerator
error C2065: 'a' : undeclared identifier
error C2070: ''unknown-type'': illegal sizeof operand
warning C4200: nonstandard extension used : zero-sized array in struct/union