给变量赋值时,& 符号是什么意思? (爪哇)

发布于 2024-11-16 06:23:40 字数 106 浏览 4 评论 0原文

这段代码中的&符号是什么意思?

int clothes = (random.nextInt(0x1000000) & 0x7f7f7f);

What does the ampersand mean in this code?

int clothes = (random.nextInt(0x1000000) & 0x7f7f7f);

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

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

发布评论

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

评论(1

初见 2024-11-23 06:23:40

它是按位AND运算符。

它对每个位位置独立操作;如果位置 n 中的相应输入位也均为 1,则位置 n 中的输出位仅为 1。

在这种情况下,0x7f7f7f 为用作位掩码。通过将某些位位置设置为 0,这意味着 clothes 中的相应位位置将始终为 0。所有其他位位置将采用与 < 产生的值相同的值。代码>random.nextInt(0x1000000)。

It's the bitwise AND operator.

It operates on each bit position independently; the output bit in position n is only 1 if both the corresponding input bits in position n are also 1.

In this context, the 0x7f7f7f is being used as a bit-mask. By having certain bit positions as 0, it means that the corresponding bit positions in clothes will always be 0. All other bit positions will take on the same value as produced by random.nextInt(0x1000000).

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