给变量赋值时,& 符号是什么意思? (爪哇)
这段代码中的&符号是什么意思?
int clothes = (random.nextInt(0x1000000) & 0x7f7f7f);
What does the ampersand mean in this code?
int clothes = (random.nextInt(0x1000000) & 0x7f7f7f);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是按位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 inclothes
will always be 0. All other bit positions will take on the same value as produced byrandom.nextInt(0x1000000)
.