如何找到一个数的32位
我想问一下如何找到数字的 32 位版本,因为我想在 JavaScript 中使用按位 AND 运算符来处理数字。它指出数字在 32 位版本中执行按位运算。
第二个问题是JavaScript中的按位与运算符(&),数字的运算在32位版本中执行,对吗?那么最后它是否将其转换回64位版本?
Can I ask how to find the 32-bit version of a number as I want to work around with numbers with the bitwise AND operator in JavaScript. It stated that the numbers perform bitwise operations in 32bit version.
Second question is it in JavaScript bitwise AND operator(&), the operation of numbers perform in 32-bit version, right? Then at the end does it convert it back to 64-bit version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 ECMAScript 规范,按位运算的返回值必须是 32 位整数。相关引用:
因此,要将任何数字转换为 32 位整数,您只需执行不会产生任何效果的二进制运算。例如,这里我使用无操作二进制文件或 (
| 0
) 将浮点数转换为整数:According to the ECMAScript specification, the return values from bitwise operations must be 32-bit integers. A relevant quote:
Therefore to convert any number to a 32-bit integer, you can just perform a binary operation that would have no effect. For example, here I convert a float to an integer using a no-op binary or (
| 0
):