Keyword Reference

首页  后退  前进

False / True

逻辑表达式使用的布尔值.

 

$var = False

$var = True

备注

这类关键字不能用于运算表达式, AutoIt 无法检测出这个错误, 其结果也是不可预知的.

相关

IsBool

函数示例

#include <MsgBoxConstants.au3>
Local $bBoolean = False
If Not ($bBoolean = True) Then MsgBox($MB_SYSTEMMODAL, "Bool comparison", "OK") ; If $bBoolean is NOT equal to True then display the messagebox

----------------------------------------