有没有一种简洁的方法在 C 中创建位掩码?

发布于 2024-12-04 06:08:53 字数 417 浏览 1 评论 0原文

我需要创建三个位掩码,最终形成三个 32 位无符号整数(我们称它们为 x、y 和 z)。面具最终应该是这样的:

x: 0000 0001 1111 1111 1111 1111 1111 1111
y: 0000 1110 0000 0000 0000 0000 0000 0000
z: 1111 0000 0000 0000 0000 0000 0000 0000

到目前为止,我已经得到了这个:

unsigned int x = (1<<25)-1;
unsigned int y = (~x)&((1<<28)-1);
unsigned int z = (~x)<<3;

但它看起来有点乱。任何人都可以想出更简洁(和可读)的方法吗?

I need to create three bit masks that end up in three 32-bit unsigned ints (let's call them x, y and z). The masks should end up like this:

x: 0000 0001 1111 1111 1111 1111 1111 1111
y: 0000 1110 0000 0000 0000 0000 0000 0000
z: 1111 0000 0000 0000 0000 0000 0000 0000

So far I've got this:

unsigned int x = (1<<25)-1;
unsigned int y = (~x)&((1<<28)-1);
unsigned int z = (~x)<<3;

But it seems a bit messy. Can anyone come up with a more concise (and readable) way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

時窥 2024-12-11 06:08:53
unsigned int x = 0x01FFFFFF,
             y = 0x0E000000,
             z = 0xF0000000;

这对你来说可读吗?

unsigned int x = 0x01FFFFFF,
             y = 0x0E000000,
             z = 0xF0000000;

Is this readable for you?

酒解孤独 2024-12-11 06:08:53

如果您使用的是 C99,请使用“新”固定宽度类型:

uint32_t x, y, z;
x = 0x01FFFFFF;
y = 0x0E000000;
z = 0xF0000000;

或者您可以使用“丑陋”八进制 :-)

x = 000177777777; // 00 000 001 111 111 111 111 111 111 111 111
y = 001600000000; // 00 001 110 000 000 000 000 000 000 000 000
z = 036000000000; // 11 110 000 000 000 000 000 000 000 000 000

If you are using C99, use the "new" fixed width types:

uint32_t x, y, z;
x = 0x01FFFFFF;
y = 0x0E000000;
z = 0xF0000000;

Or you could use "ugly" octal :-)

x = 000177777777; // 00 000 001 111 111 111 111 111 111 111 111
y = 001600000000; // 00 001 110 000 000 000 000 000 000 000 000
z = 036000000000; // 11 110 000 000 000 000 000 000 000 000 000
仙女 2024-12-11 06:08:53

只需将所需的数字放入 unsigned int 中(如果您喜欢使用十六进制表示法):

unsigned int mask= 8 ; // 00000000 00000000 00000000 00001000
unsigned int mask = 0x08 ;

Simply put into your unsigned int the number you want (if you prefer using hexadecimal notation):

unsigned int mask= 8 ; // 00000000 00000000 00000000 00001000
unsigned int mask = 0x08 ;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文