使用匿名结构/联合编译 C 代码
出现了关于如何使用匿名结构或联合编译 C 代码的问题,如C 具有使用联合的匿名字段。在 C 中,尝试使用包含匿名联合的命名结构创建类似的结构会导致编译错误。
错误消息表明匿名联合和结构字段未在结构声明中声明。要在 C 中启用此功能,必须使用 -fms-extensions 编译器标志。
使用 -fms-extensions
#include
#include
typedef struct {
union {
float x, y, z;
} xyz;
} Vector3;
int main() {
Vector3 v;
assert(&v.xyz.x == &v.x);
assert(&v.xyz.y == &v.y);
assert(&v.xyz.z == &v.z);
return 0;
}
通过此修改,代码将成功编译,并且断言将通过,确认联合成员和结构体字段的地址是等效的。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3