註釋型別
你可以通過使用:Type
註釋來告訴編譯器值的型別:
var value:int = 10; // A property "value" of type "int".
函式引數和返回型別也可以註釋:
// This function accepts two ints and returns an int.
function sum(a:int, b:int):int {
return a + b;
}
嘗試分配不匹配型別的值將導致 TypeError
:
var sprite:Sprite = 10; // 10 is not a Sprite.