小数到整数的按位转换

发布于 2024-10-10 22:49:30 字数 139 浏览 3 评论 0原文

我不知道这是否是 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 技术交流群。

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

发布评论

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

评论(2

爺獨霸怡葒院 2024-10-17 22:49:30

按位或运算符仅对整数类型进行运算,因此小数部分会默默地从数字中剥离。带零的按位“或”总是会产生另一个操作数。因此,你得到 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.

迷爱 2024-10-17 22:49:30

位运算符仅适用于整数。

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.

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