Visual C ++中#pragma pack
对齐的范围是什么? API参考
https://msdn.microsoft.com/en-us/library/vstudio/2e70t5y1%28v=vs.120%29.aspx
表示:
pack在第一个struct,union或class声明生效 在看到pragma之后
因此,以下代码的结果是:
#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
这就是为什么我有点惊讶,我真的很感激你能提供的任何解释。
答案 0 :(得分:5)
在看到pragma之后,它会在第一个struct,union或class声明生效,并持续到第一次遇到#pragma pack(pop)或另一个#pragma pack(push),直到它的pop对应。 / p>
(推和弹出通常成对出现)
答案 1 :(得分:5)
仅仅因为它“在第一个结构上生效”并不意味着它的效果仅限于第一个结构。 #pragma pack
以预处理器指令的典型方式工作:它从激活点“无限期”持续,忽略任何语言级范围,即其效果扩展到翻译单元的末尾(或直到被另一个{覆盖} {1}})。
答案 2 :(得分:3)
您应该在#pragma pack(pop)
SecondExample
#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));
}