Visual Studio 中 pragma pack 指令的范围

Scope of the pragma pack directive in Visual Studio

Visual C++ 中 #pragma pack 对齐的范围是什么? API 引用 https://msdn.microsoft.com/en-us/library/vstudio/2e70t5y1%28v=vs.120%29.aspx 说:

pack takes effect at the first struct, union, or class declaration after the pragma is seen

因此,以下代码的结果是:

#include <iostream>

#pragma pack(push, 1)

struct FirstExample
{
   int intVar;   // 4 bytes
   char charVar; // 1 byte
};

struct SecondExample
{
   int intVar;   // 4 bytes
   char charVar; // 1 byte
};


void main()
{
   printf("Size of the FirstExample is %d\n", sizeof(FirstExample));
   printf("Size of the SecondExample is %d\n", sizeof(SecondExample));
}

我预计:

Size of the FirstExample is 5
Size of the SecondExample is 8

但我收到了:

Size of the FirstExample is 5
Size of the SecondExample is 5

这就是为什么我有点惊讶,我真的很感谢你能提供的任何解释。

它在 pragma 出现后的第一个 struct、union 或 class 声明处生效,并一直持续到第一次遇到 #pragma pack(pop) 或另一个 #pragma pack(push) 为止它的流行对应物。

(push 和 pops 通常成对出现)

你应该在 SecondExample

之前调用 #pragma pack(pop)
#include <iostream>
#pragma pack(push, 1)

struct FirstExample
{
   int intVar;   // 4 bytes
   char charVar; // 1 byte
};

#pragma pack(pop)

struct SecondExample
{
   int intVar;   // 4 bytes
   char charVar; // 1 byte
};


void main()
{
 printf("Size of the FirstExample is %d\n", sizeof(FirstExample));
 printf("Size of the SecondExample is %d\n", sizeof(SecondExample));
}

只是因为它 "takes effect at the first struct" 并不意味着它的作用仅限于第一个结构。 #pragma pack 以预处理器指令的典型方式工作:它从激活点持续 "indefinitely",忽略任何语言级范围,即它的效果传播到翻译单元的末尾(或直到被覆盖另一个 #pragma pack).