像这样使用 2 的幂进行按位 OR 和 AND 叫什么?
我有一组变量,我正在这样做:
int a = 1, b = 2, c = 4, d = 8 /* etc. */;
int result = a | c | d;
重点是我可以做类似的事情:
if(result & a) {
// stuff
}
我知道这很常见,我只是不知道它的词。有这个词吗?有没有一个词来表示结果变量?
I have a set of variables and I'm doing this:
int a = 1, b = 2, c = 4, d = 8 /* etc. */;
int result = a | c | d;
The point is so I can do something like:
if(result & a) {
// stuff
}
I know this is common, I just don't know the word for it. Is there a word for this? Is there a word for the result variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
位字段将描述您正在创建的内容。
http://en.wikipedia.org/wiki/Bit_field
A bit field would describe what you are creating.
http://en.wikipedia.org/wiki/Bit_field
位标志,或简称标志。从技术上讲,它们也是位字段,但这是一种非常特殊的情况,其中每个字段只有一位宽。
Bit flags, or flags for short. They are also technically bit fields, but a very special case, where each field is just one bit wide.