C 语言 bit-field 位域


#include <stdio.h>
#include <assert.h>

typedef struct Hello{
    unsigned h: 3, 
             m: 1,
             l: 12;
} Hello;

int main(){
    int h; 
    for (h=0; h < 10000; h++){
    Hello *hello = (Hello*)(&h);

    //printf("low:%d\nhigh:%d\n", hello->l, hello->h);
    //printf("low:%d\nhigh:%d\n", h>>3, h>>13<<3);

    printf("h = 0x%x, Hello={l=%x, m=%x,h=%x}\n",h ,hello->l,hello->m, hello->h);
    printf("high:hello.h= h%8 = %x and hello.h=%x\n",h%8 , hello->h);
    printf("last: h>>12 = %x \n",h>> 4);
    assert(hello->l == h >> 4 );
    assert(hello->m == (h & 15) >> 3);
    assert(hello->m == h % 16 /8);
    assert(hello->h == h % 8 );
 }
}

转载于:https://my.oschina.net/innovation/blog/1492630

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值