Difference between “!= true” and “== false”?

我们两清 提交于 2019-11-29 07:49:56

Logically there can be differences depending on the type of value that you are comparing and language you are using. For example:

x == false implies x != true, but x != true does not always imply x == false because x can also be some nonsense value.

1 + 1 = 3 is both == false and != true.

7 > cat is neither == false and != true since it is nonsense.

x = null is != true but is not == false.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!