構造体の各メンバーのタイプには通常、デフォルトの配置があります。つまり、各構造体メンバーは事前に決定された境界に配置されます。このため、次のwikiの例ではパディングが実行されます。
struct MixedData
{
char Data1;
short Data2;
int Data3;
char Data4;
};
struct MixedData /* After compilation in 32-bit x86 machine */
{
char Data1; /* 1 byte */
/* 1 byte for the following 'short' to be aligned on a 2 byte boundary
assuming that the address where structure begins is an even number */
char Padding1[1];
short Data2; /* 2 bytes */
int Data3; /* 4 bytes - largest structure member */
char Data4; /* 1 byte */
char Padding2[3]; /* 3 bytes to make total size of the structure 12 bytes */
};
アラインメントを維持する必要がある(実用的な)理由は何ですか?