像这样使用 2 的幂进行按位 OR 和 AND 叫什么?

发布于 2024-10-17 08:22:29 字数 245 浏览 2 评论 0原文

我有一组变量,我正在这样做:

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 技术交流群。

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

发布评论

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

评论(2

寒尘 2024-10-24 08:22:29

位字段将描述您正在创建的内容。

http://en.wikipedia.org/wiki/Bit_field

A bit field would describe what you are creating.

http://en.wikipedia.org/wiki/Bit_field

婴鹅 2024-10-24 08:22:29

位标志,或简称标志。从技术上讲,它们也是位字段,但这是一种非常特殊的情况,其中每个字段只有一位宽。

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.

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