创建新数组时的TypeError

时间:2013-07-09 07:23:51

标签: arrays actionscript-3 exception actionscript flash-builder

以下代码行有时会引发异常:

var stopScheduleItems:Array = [];

抛出异常:

TypeError: Error #1010: A term is undefined and has no properties.

我无法理解为什么在创建新数组时会发生这种情况。谁能提供一些见解。感谢

1 个答案:

答案 0 :(得分:1)

此行不能抛出此错误。

您更有可能在定义之前尝试访问stopScheduleItems对象的方法。例如:

stopScheduleItems.pop();
var stopScheduleItems:Array = [];