编译器警告(等级 4)C4204
使用了非标准扩展:非常量聚合初始值设定项
使用 Microsoft 扩展 (/Ze) 可以初始化含非常量值的聚合类型(数组、结构、联合和类)。
示例
// C4204.c
// compile with: /W4
int func1()
{
return 0;
}
struct S1
{
int i;
};
int main()
{
struct S1 s1 = { func1() }; // C4204
return s1.i;
}
根据 ANSI 兼容性 (/Za),此类初始化无效。