Visual Basic Scripting Edition VBScript中文手册 |
语言参考 | 手册首页 | asp之家 |
对两个表达式进行逻辑蕴涵运算。
result = expression1 Imp expression2
result
任意数值变量。
expression1
任意表达式。
expression2
任意表达式。
下表显示如何确定 result 的取值:
如果 expression1 为 | 且 expression2 为 | 则 result 为 |
---|---|---|
True | True | True |
True | False | False |
True | Null | Null |
False | True | True |
False | False | True |
False | Null | True |
Null | True | True |
Null | False | Null |
Null | Null | Null |
Imp 运算符执行两个数值表达式相应位的逐位比较,并按下表设置 result 相应位:
如 expression1 中的位是 | 且 expression2 中的位是 | 则 result 为 |
---|---|---|
0 | 0 | 1 |
0 | 1 | 1 |
1 | 0 | 0 |
1 | 1 | 1 |
版本 1
Eqv 运算符 | 逻辑运算符 | 运算符优先级 | 运算符概述