autohotkey array null ...如何检查数组是否为null / empty?

时间:2019-04-15 03:43:19

标签: arrays null autohotkey

Autohotkey真的很痛苦,在C#中,这种简单的操作很容易,但是我无法使其与Autohotkey .ahk文件一起使用。

ListOfVal:=Arrays() ; Or ListOfVal:=[] | this creates the array <---comment

我已经尝试过了...

if ListOfVal=null                                  
    MsgBox, "testing"

;Ive tried all these too...

;if ListOfVal==null

;if ListOfVal:=null 

;if !ListOfVal

;if ListOfVal.MaxIndex()<1        

;if ListOfVal.MaxIndex()=-1

您知道我在这里拉头发,请帮助...

1 个答案:

答案 0 :(得分:1)

请尝试以下MinMaxIndexLengthCount

中的一个

IsObject