小数到整数的按位转换
我不知道这是否是 JavaScript 特有的。
var pi = 3.14159265
alert(pi|0)
这将输出 3。
有人能解释一下按位或运算期间小数部分会发生什么吗?
I don't know if this is specific to JavaScript.
var pi = 3.14159265
alert(pi|0)
This will output 3.
Can someone explain what happens to the decimal fractions part during the bitwise OR operation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
按位或运算符仅对整数类型进行运算,因此小数部分会默默地从数字中剥离。带零的按位“或”总是会产生另一个操作数。因此,你得到 3。
The bitwise or operator only operates on integer types, so the fractional component is silently stripped off the number. A bitwise or with zero will always result in the other operand. Therefore, you get 3.
位运算符仅适用于整数。
pi (3.14..) 转换为 INT,将小数位截断为 3。
Bitwise operator only works on integers.
pi (3.14..) is converted to an INT which truncates the decimal places to 3.