VBS教程:运算符-Not 运算符
时间:2021-07-04 09:23:51|栏目:VBS|点击: 次
Not 运算符
对表达式执行逻辑非运算。
result = Not expression
参数
result
任意数值变量。
expression
任意表达式。
说明
下表显示如何确定 result 的值:
如果 expression 为 | 则 result 为 |
---|---|
True | False |
False | True |
Null | Null |
此外,Not 运算符将变量的位取反,并按下表设置 result 的相应位:
expression 中的位 | result 中的位 |
---|---|
0 | 1 |
1 | 0 |