VBS教程:运算符-Not 运算符
程序员文章站
2023-02-15 21:45:18
not 运算符对表达式执行逻辑非运算。result = not expression参数result任意数值变量...
not 运算符
对表达式执行逻辑非运算。
result = not expression
参数
result
任意数值变量。
expression
任意表达式。
说明
下表显示如何确定 result 的值:
如果 expression 为 | 则 result 为 |
---|---|
true | false |
false | true |
null | null |
此外,not 运算符将变量的位取反,并按下表设置 result 的相应位:
expression 中的位 | result 中的位 |
---|---|
0 | 1 |
1 | 0 |
上一篇: VBS教程:运算符-除运算符 (/)
下一篇: 打草稿