Difference Between Union and Structure
A union is a class all of whose data members are mapped to the same address within its object. The size of an object of a union is, therefore, the size of its largest data member.
In a structure, all of its data members are stored in contiguous memory locations. The size of an object of a struct is, therefore, the size of the sum of all its data members.
This gain in space efficiency, while valuable in certain circumstances, comes at a great cost of safety: the program logic must ensure that it only reads the field most recently written along all possible execution paths. The exception is when unions are used for type conversion: in this case, a certain field is written and the subsequently read field is deliberately different.
An example illustrating this point is:
+-----+-----+ struct { int a; float b } gives | a | b | +-----+-----+ ^ ^ | | memory location: 150 154 | V +-----+ union { int a; float b } gives | a | | b | +-----+Structures are used where an "object" is composed of other objects, like a point object consisting of two integers, those being the x and y coordinates:
typedef struct { int x; // x and y are separate int y; } tPoint;Unions are typically used in situation where an object can be one of many things but only one at a time, such as a type-less storage system:
typedef enum { STR, INT } tType; typedef struct { tType typ; // typ is separate. union { int ival; // ival and sval occupy same memory. char *sval; } } tVal;Read more about this topic: Union (computer Science)
Famous quotes containing the words difference between, difference, union and/or structure:
“The first idea that the child must acquire, in order to be actively disciplined, is that of the difference between good and evil; and the task of the educator lies in seeing that the child does not confound good with immobility and evil with activity.”
—Maria Montessori (18701952)
“It is so wonderful to our neurologists that a man can see without his eyes, that it does not occur to them that is just as wonderful that he should see with them; and that is ever the difference between the wise and the unwise: the latter wonders at what is unusual, the wise man wonders at the usual.”
—Ralph Waldo Emerson (18031882)
“If the union of these States, and the liberties of this people, shall be lost, it is but little to any one man of fifty-two years of age, but a great deal to the thirty millions of people who inhabit these United States, and to their posterity in all coming time.”
—Abraham Lincoln (18091865)
“With sixty staring me in the face, I have developed inflammation of the sentence structure and definite hardening of the paragraphs.”
—James Thurber (18941961)