What are the real cases where we should use union instead of structure or nested in structure?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What are the real cases where we should use union instead of structure or nested in structure??

I mean to say.....where should we use union in real life where we can access a lot of things by using structure !!

28th May 2019, 7:32 AM
Partha Sarathi
Partha Sarathi - avatar
1 Answer
+ 2
I think it is used for space optimization purpose when two parts of a data type are never used in the same time For example: typedef struct{ int key; int mouseX; int mouseY; } EventInfos; In this structure, a mouse click does not happen in the same event as a key pressed so it could be rewritten this way: struct{ int eventType; union{ int key; int coords[2]; } data; }; In this union, it does not change the size but if we add other events (mouse wheel, ...), the union will not grow much (depending on the data you add) but the structure would grow a lot (the first one)
29th May 2019, 8:59 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar