如果我有以下代码:
class Stand {
public static const STAND_LIST:Array = new Array();
STAND_LIST[0] = new Array();
STAND_LIST[1] = new Array();
public function Stand() {
//constructor
}
}
是STAND_LIST [0]是否创建了Stand的每个新实例?或者它只创建一次?
如果它创建了Stand的每个新实例,我该如何让它只运行一次?(比如初始化const)
答案 0 :(得分:1)