データ型のデフォルト値
ActionScript2,3それぞれのデータ型のデフォルト値をメモ。
String型
as2:undefined
as3:null
Number型
as2:undefined
as3:NaN
int型
as2:ー
as3:0
uint型
as2:ー
as3:0
Array型
as2:undefined
as3:null
Object型
as2:undefined
as3:null
Boolean型
as2:undefined
as3:false
型指定なし
as2:undefined
as3:undefined(var hoge:*)