有没有一种简洁的方法在 C 中创建位掩码?
我需要创建三个位掩码,最终形成三个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对你来说可读吗?
Is this readable for you?
如果您使用的是 C99,请使用“新”固定宽度类型:
或者您可以使用“丑陋”八进制 :-)
If you are using C99, use the "new" fixed width types:
Or you could use "ugly" octal :-)
只需将所需的数字放入 unsigned int 中(如果您喜欢使用十六进制表示法):
Simply put into your unsigned int the number you want (if you prefer using hexadecimal notation):