VBScript CBool 函数

❮ 完整的 VBScript 参考

CBool 函数可把表达式转换为布尔类型。

表达式必须是数值。

语法

CBool(expression)
参数 描述
expression 必需的。任何合法的表达式。非零的值返回 True,零返回 False。如果表达式不能解释为数值,则将发生 run-time 错误。

实例

实例

<%

response.write(CBool(5) & "<br />")
response.write(CBool(0) & "<br />")
response.write(CBool(-5) & "<br />")

%>

上述代码的输出为:

True
False
True
显示示例 »

❮ 完整的 VBScript 参考