lua operator~ =是什么意思?

时间:2016-01-11 02:10:46

标签: lua operators

可能很简单,但我想知道〜=运算符在lua中意味着什么,如

if x ~= params then

搜索但一无所获。

3 个答案:

答案 0 :(得分:22)

~=not equals

它与!=

的其他语言相同

答案 1 :(得分:12)

  

运算符〜=正是否定相等(==)。

请参阅docs

答案 2 :(得分:6)

在编译过程中,它会被翻译为not a == b