当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript CBool 函数
The CBool function converts an expression to type Boolean.
CBool 函数可返回表达式,此表达式已转换为 Boolean 子类型的 Variant
CBool(expression) |
参数 | 描述 |
---|---|
expression | Required. Any valid expression. A nonzero value returns True, zero returns False. A run-time error occurs if the expression can not be interpreted as a numeric value 必选项。expression 是任意有效的表达式。如果 expression 是零,则返回 False;否则返回 True。如果 expression 不能解释为数值,则将发生运行时错误。 |
dim a,b 输出: True |