|地址类型 | 逻辑地址 |地址长度N | 结构体正确定义如下 typedef struct { uint8_t AddrLen:4; uint8_t LogicAddr:2; uint8_t ServerAddrType:2; }SA; 错误定义如下: typedef struct { uint8_t ServerAddrType:2; uint8_t LogicAddr:2; uint8_t AddrLen:4; }SA; typedef struct { uint8_t hea...
struct 位域结构名 { 位域列表 }; 其中位域列表的形式为: 类型说明符 位域名:位域长度 位域变量的说明与结构变量说明的⽅式相同。 可采⽤先定义后说明,同时定义说明或者直接说明这三种⽅式。例如: struct bs { int a:8; int b:2; int c:6; }data; c语言结构体位域 顺序 c 语言结构体位域 ...