所以,我有一个友好的邻域对象构造函数,就像这样;
function Clip(a, b)
{
this.track = a
this.slot = b
this.path = "live_set tracks " + a + " clip_slots " + b + " clip "
clip = new LiveAPI(this.patcher, this.path)
this.length = clip.get("length")
}
我想做的是
- 将任意数量的它们添加到数组中
- 当数组的长度达到 8 时,将该数组添加到一个新的“超级”数组并开始一个新数组。
换句话说,超级数组应该允许我通过例如 、 等访问对象的属性和clip[0][0].length - clip[0][7].length
方法clip[1][0].length - clip[1][7].length
。