gpt4 book ai didi

javascript - 为什么 !(~true) 不是真的?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:08:19 25 4
gpt4 key购买 nike

在 javascript 中,波浪号运算符是按位非或补码,那么为什么下面的运算符不能按预期工作?

var x = true;
var tildeX = ~x;
var exclX = !x;


tildeX == exclX; // returns false

最佳答案

原因是因为true等价于1,当你对数字进行按位非(~) 1 你得到 -2。当与 NOT 运算符 (!) 结合时,它会产生 false(因为当与 NOT 运算符结合时,唯一会产生 true 的数字是 0)

Here is some information that you might find interesting

引用自链接:

Bitwise NOTing any number x yields -(x + 1)

关于javascript - 为什么 !(~true) 不是真的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19514227/

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