I have a example with me where in which the alignment of a type is guaranteed, union max_align . I am looking for a even simpler example in which union is used practically, to explain my friend.
|
|
I usually use unions when parsing text. I use something like this:
If you want to see how unions are used HEAVILY, check any code using flex/bison. For example see splint, it contains TONS of unions. |
|||
|
|
For accessing registers or I/O ports bytewise as well as bitwise by mapping that particular port to memory, see the example below:
|
|||||||||||||||||
|
|
I've typically used unions where you want to have different views of the data e.g. a 32-bit colour value where you want both the 32-bit val and the red,green,blue and alpha components
NB You could also achieve the same thing with bit-masking and shifting i.e
but I find the union approach more elegant |
|||||||||||||||||||
|
|
In the Windows world, The idea is that a If you have to deal with COM objects in Windows C++ code, you'll see variant types all over the place. |
||||
|
|
|
Unions are useful if you have different kinds of messages, in which case you don't have to know in any intermediate levels the exact type. Only the sender and receiver need to parse the message actual message. Any other levels only really need to know the size and possibly sender and/or receiver info. |
|||||||
|
|
SDL uses an union for representing events: http://www.libsdl.org/cgi/docwiki.cgi/SDL_Event. |
|||
|
|
|
|||||
|
|
I've used sometimes unions this way
Then you could declare arrays of different kind of values, storing more or less efficiently the data, and make some "polimorph" operations like:
|
||||
|
|
|
|||
|
|
|
Recently I think I saw some union used in vector programming. vector programming is used in intel MMX technology, GPU hardware, IBM's Cell Broadband Engine, and others. a vector may correspond to a 128 bit register. It is very commonly used for SIMD architecture. since the hardware has 128-bit registers, you can store 4 single-precision-floating points in a register/variable. an easy way to construct, convert, extract individual elements of a vector is to use the union.
if you take a path in PlayStation 3 Multi-core Programming, or graphics programming, a good chance you'll face more of these stuffs. |
||||
|
|
I know I'm a bit late to the party, but as a practical example the
The actual implementation (as the article states) is found in the oaidl.h C header file. |
|||
|
|
|
Another example more: to save doing castings.
instead of:
|
|||||||||||||
|
|
For convenience, I use unions to let me use the same class to store xyzw and rgba values
|
|||
|
|
|
Many examples of unions can be found in As a general rule, protocol implementations use union construct. |
|||
|
|
|
do you mean something like this ?
ADDED: I have recently used this on our AIX machine to transform the 64bit machine-indentifier into a byte-array.
|
|||||||||
|
|
Here is another example where a union could be useful. (not my own idea, I have found this on a document discussing c++ optimizations) begin-quote .... Unions can also be used to save space, e.g. first the non-union approach:
Here it is possible to use the same memory area for a and b because their live ranges do not overlap. You can save a lot of cpu-cache space by joining a and b in a union:
Using a union is not a safe programming practice, of course, because you will get no warning from the compiler if the uses of a and b overlap. You should use this method only for big objects that take a lot of cache space. ... end-qoute |
||||
|
|
|
Unions can also be useful when type punning, which is desirable in a select few places (such as some techniques for floating-point comparison algorithms). |
|||
|
|
