ActionScriptでの定数はconstを使う。
const MAX:int = 255;
配列も定数にできる。
const Test:Array = new Array("A","B","C");
この場合、Arrayクラスのメソッド、例えばpush()などは呼び出すことができる。
http://livedocs.adobe.com/flex/3_jp/langref/statements.html#const
ActionScriptでの定数はconstを使う。
const MAX:int = 255;
配列も定数にできる。
const Test:Array = new Array("A","B","C");
この場合、Arrayクラスのメソッド、例えばpush()などは呼び出すことができる。
http://livedocs.adobe.com/flex/3_jp/langref/statements.html#const