C++学习 __attribute__ ((packed)) 的作用
最近在看我们的代码的时候发现声明类型的时候有 __attribute__ ((packed))的结构体类型声明,如下:[cpp]view plaincopyprint?typedef struct Student { int SID; char SName; }__attribute__((packed)) Sinfo; typed