#pragma pack(n)的使用 在缺省情況下,編譯器為了讓程序跑得跟快,減少CPU讀取數據的指令周期,對結構體的存儲進行了優化, 比如:如下結構體 struct s { char ch; int i; }; 雖然變量 ...