返回变量的内部表示类型.
VarGetType ( 表达式 )
Local $int = 1 Local $float = 2.0 MsgBox(0, "类型", "$int 为 " & VarGetType($int) & @CRLF & "$float 为 " & VarGetType($float))