Whenever I see examples of union, they are always different types. For example, from MSDN:
// declaring_a_union.cpp
union DATATYPE // Declare union type
{
char ch;
int i;
long l;
float f;
double d;
} var1; // Optional declaration of union variable
int main()
{
}
What happens if I have a union (in this case anonymous, but that shouldn't matter) like this:
union
{
float m_1stVar;
float m_1stVarAlternateName;
};
Regardless of whether this is good practice or not, will this cause any issues?
No, this won't cause any issues. The reason you don't see it more often is that it's pointless - both names refer to the same value of the same type.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With