共用方式為


編譯器警告 (層級 4) C4324

'structname':結構因對齊指定名稱而填補

因為您指定了對齊指定名稱 (例如 __declspec(align)),所以在結構結尾新增了填補。

例如,下列程式碼會產生 C4324:

// C4324.cpp
// compile with: /W4
struct __declspec(align(32)) A
{
   char a;
};   // C4324

int main()
{
}