Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のステートメントは実際に何を行い、どのような効果がありますか?
#pragma pack(push,8)
現在のpack設定をスタックにプッシュし (後で を介して復元できるようにpop)、構造体要素のアラインメントを 8 バイトに設定します。自然に 8 バイト境界にアラインされていないものはすべて、必要なアラインメントを維持するために、その前にパディング バイトが挿入されます。
pack
pop