可能很简单,但我想知道〜=运算符在lua中是什么意思,就像在
if x ~= params then
搜索但没有找到任何东西.
的~=是not equals
~=
not equals
它与其他语言相当 !=
!=
运算符〜=正是否定等式(==).
查看文档.
在编译期间它被转换为not a == b.
not a == b