是否可以在AutoHotKey中批量初始化数组?

时间:2016-12-17 15:23:26

标签: autohotkey

我知道我可以写

a := Object()
a[1] := "textA"
a[2] := "textB"
a[3] := "textC"

我可以写一些像

这样的东西吗?
a := {"textA", "textB", "textC"}

1 个答案:

答案 0 :(得分:1)

您可以使用括号语法定义索引数组

a := ["textA", "textB", "textC"]

或数组创建功能:

a := Array{"textA", "textB", "textC"}

索引数组是对象,表示项目列表,编号为1及以上。在此示例中,值“textA”存储在对象键1中,值“textB”存储在对象键2中,值“textC”存储在对象键3中。

https://autohotkey.com/docs/Tutorial.htm#s7