注释类型

你可以通过使用: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.