在Zscript中将变量追加到列表中

时间:2016-02-04 18:23:41

标签: zscript

在Zscript中我可以创建一个包含8个项目的列表

[VarDef, myArr(8)]

如何将变量添加(推送)到该列表?

[VarDef, temp, 14]
[myArr.push(temp)] // ??? there is no push command

1 个答案:

答案 0 :(得分:0)

我最终弄明白了。不是我未来的自我,你需要为数组长度设置一个新的变量。

(我认为没有Zscript相当于array.length。

以下是创建空白数组然后通过循环填充

的示例
[IButton, "Append", "stuff!",

// create array with 5 elements
[VarDef, myArr(5)]

// [Note,myArr(1),,1] // can't do! Variable has not been assigned a value

// create variable equal to array length
[VarDef, len, 5]

// create string to hold results
[VarDef, s, ""]

// loop over array
[VarSet,i,0] 
    [Loop,len,
        [VarSet,myArr(i), i * 2]
        [VarSet,s, [StrMerge, s, i, " "]]
        // [Note,i,,0.5] // show counter
        // [Note,s,,0.5] // show string value
        [VarInc,i] // increase loop counter by 1
    ]

// show results!
[Note,myArr(1),,1]
]