gpt4 book ai didi

actionscript-3 - "^"是 Math.pow() 的简写吗?

转载 作者:行者123 更新时间:2023-12-05 00:28:03 25 4
gpt4 key购买 nike

4 ^ 2Math.pow(4, 2); 在 Actionscript 3 中有区别吗?

最佳答案

Is there a difference between 4 ^ 2 and Math.pow(4, 2);

是的,^ 是二进制 xor运算符,而 Math.pow(x, y)x 提高到 y 次方。

4<sub>10</sub> ^ 2<sub>10</sub> == 6<sub>10</sub> // 0100<sub>2</sub> xor 0010<sub>2</sub> == 0110<sub>2</sub>

Math.pow(4, 2) == 16 // 4<sup>2</sup> == 16

从 ES2016 开始,Math.pow(x, y) 的简写是 x**y

console.log('Using `Math.pow(4, 2)`:', Math.pow(4, 2))
console.log('Using `4**2`:', 4**2)

关于actionscript-3 - "^"是 Math.pow() 的简写吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10466429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com