有没有办法命名一系列对象:
for (i=0; i<numberOfObjectsDesired; i++;) {
Object ("thisone"+i);
thisone+i = new Object();
}
这样的 thisone0,thisone1,thisone2,thisone3,...等都是Objects的唯一实例
答案 0 :(得分:2)
当然,它被称为数组:
var thisone = new object[numberOfObjectsDesired];
for (i=0; i<numberOfObjectsDesired; i++;) {
Object ("thisone"+i);
thisone[i] = new Object();
}
请注意,您必须将您的实例称为thisone[0]
,thisone[1]
等,而不是thisone0
,thisone1
,...