Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?
|
feedback
|
|
This is because of structure alignment. Structure alignment refers to the ability of the compiler to insert unused memory into a structure so that data members are optimally aligned for better performance. Many processors perform best when fundamental data types are stored at byte-addresses that are multiples of their sizes. Here's an example using typical settings for an x86 processor:
One can minimize the size of structures by putting the largest data types at the beginning of the structure and the smallest data types at the end of the structure (like structure IMPORTANT NOTE: Both the C and C++ standards state that structure alignment is implementation defined. Therefore each compiler may choose to align data differently, resulting in different and incompatible data layouts. For this reason, when dealing with libraries that will be used by different compilers, it is important to understand how the compilers align data. Some compilers have command-line settings and/or special | |||||||||||||||||||||
feedback
|
|
This can be due to byte alignment and padding so that the structure comes out to an even number of bytes (or words) on your platform. For example in C on Linux, the following 3 structures:
Have members who's sizes (in bytes) are 4 bytes (32 bits), 8 bytes (2x 32 bits) and 1 byte (2+6 bits) respectively. The above program (on Linux using gcc) prints the sizes as 4, 8, and 4 - where the last structure is padded so that it is a single word (4 x 8 bit bytes on my 32bit platform).
| |||
|
feedback
|
|
In addition to the other answers, a struct can (but usually doesn't) have virtual functions, in which case the size of the struct will also include the space for the vtbl. | |||||
feedback
|
|
It can do so if you have implicitly or explicitly set the alignment of the struct. A struct that is aligned 4 will always be a multiple of 4 bytes even if the size of its members would be something that's not a multiple of 4 bytes. Also a library may be compiled under x86 with 32-bit ints and you may be comparing its components on a 64-bit process would would give you a different result if you were doing this by hand. | |||
|
feedback
|
|
If you want the structure to have a certain size with GCC for example use attribute((packed)). On Windows you can set the alignment to one byte when using the cl.exe compier with the /Zp option. Usually it is easier for the Operatin System to access data that is a multiple of 4 (or 8), depending platform and also on the compiler. So it is a matter of alignment basically. You need to have good reasons to change it. | |||||||||
feedback
|
|
See also: for Microsoft Visual C: http://msdn.microsoft.com/en-us/library/2e70t5y1%28v=vs.80%29.aspx and GCC claim compatibility with Microsoft's compiler.: http://gcc.gnu.org/onlinedocs/gcc/Structure_002dPacking-Pragmas.html In addition to the previous answers, please note that regardless the packaging, there is no members-order-guarantee in C++. Compilers may (and certainly do) add virtual table pointer and base structures' members to the structure. Even the existence of virtual table is not ensured by the standard (virtual mechanism implementation is not specified) and therefore one can conclude that such guarantee is just impossible. I'm quite sure member-order is grunted in C, but I wouldn't count on it, when writing a cross-platform or cross-compiler program. | |||
|
feedback
|