gpt4 book ai didi

c++ - 为什么不能在不同的底层类型之间拆分位字段?

转载 作者:行者123 更新时间:2023-12-03 09:30:29 27 4
gpt4 key购买 nike

为什么这两个结构体的大小不同?

#pragma pack(push, 1)
struct WordA
{
uint32_t address : 8;
uint32_t data : 20;
uint32_t sign : 1;
uint32_t stateMatrix : 2;
uint32_t parity : 1;
};

struct WordB
{
uint8_t address;
uint32_t data : 20;
uint8_t sign : 1;
uint8_t stateMatrix : 2;
uint8_t parity : 1;
};
#pragma pack(pop)
不知何故 WordB占用 6 个字节而不是 4 个,而 WordA正好占用 32 位。
我假设给定结构内使用位的总和会使两个结构具有相同的大小。显然我错了,但我找不到原因的解释。
Bit fields页面仅显示所有结构成员都属于同一类型时的示例,这是 WordA 的情况。 .
任何人都可以解释一下,为什么尺寸不匹配,以及它是否符合标准或实现定义?

最佳答案

Why can't a bit field be split between different underlying types?


可以 在标准允许的意义上。
不是 因为这是语言实现者(或者更确切地说,ABI 的设计者)选择的。这个决定可能是首选的,因为它可以使程序更快或编译器更容易实现。
这是标准报价:

[class.bit]

... Allocation of bit-fields within a class object is implementation-defined.Alignment of bit-fields is implementation-defined.Bit-fields are packed into some addressable allocation unit.

关于c++ - 为什么不能在不同的底层类型之间拆分位字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65180554/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com