我有代码:
class Vector4
{
public:
union
{
float x,y,z,w;
float v[4];
};
Vector4(float _x, float _y, float _z, float _w)
: x(_x), y(_y), z(_z), w(_w)
{
std::cout << "Vector4 constructor: " << this->x << "; " << this->y << "; " << this->z << "; " << this->w << std::endl;
}
};
我记得在VC 7.1中一切都很好,但在VC 2010中我得到了警告:
警告C4608:'Vector4 :: y'已被另一个初始化 初始化列表中的union成员, '的Vector4 ::::的Vector4 :: X'
当我写:
Vector4 vec(1.0f, 0.0f, 0.0f, 0.0f);
我在控制台中看到了:
Vector4构造函数:0; 0; 0; 0
请告诉我,发生了什么?
答案 0 :(得分:10)
您将x,y,z,w
all联合起来:所有四个浮点数共享相同的内存空间,因为并集的每个元素都从相同的内存地址开始。
相反,您希望将所有向量元素放在结构中,如下所示:
union {
struct { float x, y, z, w; };
float v[4];
};