C语言struct中的位域

位域的思想参考了http://hi.baidu.com/luckymouse2009/blog/item/e08f5d4e912b993eaec3abb5.html,我使用如下的例子来简单说明:

#include <stdio.h>

static union
{
    struct
    {
        int c : 5;
        int b : 6;
        int a : 5;

    }b;
    char c[2];
}u;
int main()
{
    u.c[0] = 'A';
    u.c[1] = 'B';
    printf("%X,%X,%X/n", u.b.a, u.b.b, u.b.c & 0xFF);
}

我使用VC2005编译,输出结果为: 8,12,1

这三个十六进制数的二进制表示为:01000, 010010, 00001

“AB”的二进制表示为 01000010 (B) 01000001(A)。(注意B在前,至于为什么我不太明白)。

这里struct b中是按照低到高的顺序来的,所以a在最后,

a占前5位:      01000010 01000001

b占接下来6位:01000010 01000001

c占最后5位:    01000010 01000001

最后就形成了上述结果。

你可能感兴趣的:(c,struct,语言)