;声明数组
items:=[]
;初始化数组
Loop Files, x:\pic\*.jpg
items[A_Index]:=A_LoopFileFullPath
;输出第 i 个元素
MsgBox % items[3]
return
[AHK]一维数组
最新推荐文章于 2024-03-19 22:48:34 发布
;声明数组
items:=[]
;初始化数组
Loop Files, x:\pic\*.jpg
items[A_Index]:=A_LoopFileFullPath
;输出第 i 个元素
MsgBox % items[3]
return