先定义的位域占用字节低位
1234
struct { uint8_t a:4; uint8_t b:4;} Bit;
内存中:
12
xxxx xxxxb a
测试:
123456789101112131415161718
#include <stdio.h>#include <stdint.h>struct { uint8_t a:4; /**< 低4位 */ uint8_t b:4; /**< 高4位 */} Bit;int main(){ Bit.a = 0x0; Bit.b = 0xf; printf("Bit:%#x\n", Bit); printf("address:%x\n", (char*)&Bit); return 0;}
输出:
Bit:0xf0address:4063f0