`(x+7)&~7`,把x增大为稍大于x的8的倍数。这怎么理解?
stl源码剖析的第61页有上面的位运算,不过我不了解,求证明。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
stl源码剖析的第61页有上面的位运算,不过我不了解,求证明。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
7 = 00000111b
& is bitwise AND
so the x&7 has the only 3 low bits of x.
~7 = 11111000b
so the x&~7 will set x's 3 low bits to 0, and it is the multiple of 8.
(x+n-1)&(n-1)
,把x增大稍大于x的n的倍数,前提是n必须为 2^mbecause only
2^m-1
has the type : high bits must be 1, low bits must be 0, not intersected.subnet mask 子网掩码