各位大神好,小弟在最近的面试中碰到了这类的考题
Q:在big endian中B1.A1的值会是多少
小弟的想法是因为在little endian中会取REG_SET.B3[0]这个内存中的低7位,值为0x12,
所以在big endian中会取内存中的高7位,所以值为0x9,请问这样的想法正确吗
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef union{
struct{
u8 A1 :7;
u8 :1;
u8 A2 :2;
u8 A3 :1;
u8 A4 :1;
u8 A5 :4;
u16 A6;
} B1;
u32 B2;
u8 B3[4];
} REG_SET
REG_SET.B3[0] = 0x12;
REG_SET.B3[1] = 0x34;
REG_SET.B3[2] = 0x56;
REG_SET.B3[3] = 0x78;