作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这行代码的含义是什么
n = (n<<1) | ((d>=0.0004)?1:0);
尝试理解函数 sigOff() 中的代码 http://www.espruino.com/Remote+Control+Sockets
最佳答案
此片段似乎使用 bitwise OR ( |
) 和左移 ( <<
) 运算符:
Bitwise OR:
a | b
;
Returns a one in each bit position for which the corresponding bits of either or both operands are ones.
Left shift:a << b
;
Shifts a in binary representation b (< 32) bits to the left, shifting in zeros from the right.
左移1
( << 1
) 基本上是 n
的值的两倍.
然后, or ( |
) 基本上“添加” 1
到结果使其不均匀,如果 d >= 0.0004
.
如果d < 0.0004
,左移的结果不变。
所以,对于 n == 3
和d == 0.0004
,发生这种情况:
n << 1 // 6
(d>=0.0004)?1:0 // 1
6 | 1 // 7
对于n == 5
和d == 0.0002
,发生这种情况:
n << 1 // 10
(d>=0.0004)?1:0 // 0
10 | 0 // 10
关于javascript - 位运算的意义何在(Espruino),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24239001/
我是一名优秀的程序员,十分优秀!