I have used unions earlier comfortably; today I was alarmed when I read this post and came to know that this code
union ARGB
{
uint32_t colour;
struct componentsTag
{
uint8_t b;
uint8_t g;
uint8_t r;
uint8_t a;
} components;
} pixel;
pixel.colour = 0xff040201;
/* ---- somewhere down the code ---- */
if(pixel.components.a)
is actually undefined behaviour I.e. reading from a member of the union other than the one recently written to leads to undefined behaviour. If this isn't the intended behaviour of unions, what is? Can some one please explain it elaborately?
b, g, r,andamay not be contiguous, and thus not match the layout of auint32_t. This is in addition to the Endianess issues that others have pointed out. – Thomas Matthews Feb 22 '10 at 18:48