What is the sizeof the union in C/C++? Is it the sizeof the largest datatype inside it? If so, how does the compiler calculate how to move the stack pointer if one of the smaller datatype of the union is active?
|
|
The Standard answers all questions in section 9.5:
That means each member share the same memory region. There is at most one member active, but you can't find out which one. You will have to store that information about the currently active member yourself somewhere else. Storing such a flag in addition to the union (for example having a struct with an integer as the type-flag and an union as the data-store) will give you a so called "discriminated union": An union which knows what type in it is currently the "active one". One common use is in lexers, where you can have different tokens, but depending on the token, you have different informations to store (putting
The Standard allows you to access There exist compiler extensions that allow accessing all members disregarding which one currently has its value stored. That allows efficient reinterpretation of stored bits with different types among each of the members. For example, the following may be used to dissect a float variable into 2 unsigned shorts:
That can come quite handy when writing low-level code. If the compiler does not support that extension, but you do it anyway, you write code whose results are not defined. So be certain your compiler has support for it if you use that trick. |
||||||||||
|
|
|
A
An instance of the above Side note: As noted by Stefano, the actual space any type ( |
||||||
|
|
|
There is no notion of active datatype for a union. You are free to read and write any 'member' of the union: this is up to you to interpret what you get. Therefore, the sizeof a union is always the sizeof its largest datatype. |
||
|
|
|
|
It depends on the compiler, and on the options.
This outputs: 13 4 16 If I remember correctly, it depends on the alignment that the compiler puts into the allocated space. So, unless you use some special option, the compiler will put padding into your union space. edit: with gcc you need to use a pragma directive
this outputs 13 4 13 You can also see it from the disassemble (removed some printf, for clarity)
Where the only difference is in main+13, where the compiler allocates on the stack 0xd instead of 0x10 |
||||||
|
|
|
The size will be at least that of the largest composing type. There is no concept of an "active" type. |
|||
|
|
|
|
You should really look at a union as a container for the largest datatype inside it combined with a shortcut for a cast. When you use one of the smaller members, the unused space is still there, but it simply stays unused. You often see this used in combination with ioctl() calls under in Unix, all ioctl() calls will pass the same struct, which contains a union of all possible responses. E.g. this example comes from /usr/include/linux/if.h and this struct is used in ioctl()'s for configuring/querying the state of an ethernet interface, the request parameters defines which part of the union is actually in use:
|
||
|
|
|
|
Example:
|
||||
|
