ActionScript 3では、オプションの引数にデフォルト値を指定して宣言すると、値nullを型付き引数に使用できません。型付きのオプション引数の既定値がNullでないのはなぜですか?
function Action(Param:int=null){
// 1184: Incompatible default value of type Null where int is expected.
}
function Action(Param:int=0){
// No compiler errors
}
これに対する回避策、またはすべてのデータ型に適用できる汎用値はありますか?