declaring a variable or constant with type annotation ensures that the variable or constant stores only data of the appropriate type.
用类型批注声明变量或常数可确保此变量或常数只存储适当类型的数据。
describes the concept of type annotation and how to use it in a function definition to control the input and output data types.
描述类型批注的概念,以及如何在函数定义中使用它来控制输入和输出数据类型。
the type annotation of the parameter is not optional;
参数的类型批注不是可选项;
a common case where a type annotation is useful on a parameter is when the parameter is an object type and you want to use a member.
类型批注对于参数很有用的一种常见情况是:参数是一个对象类型,而您需要使用一个成员。
you can also explicitly specify the return value of a function by providing a type annotation after all the parameters.
也可以通过在所有参数后面指定类型批注,从而显式指定函数的返回类型。
type annotation of variables, constants, and functions helps reduce programming errors by limiting data appropriate types.
变数、常数和函式的型别附注藉由限制资料适当型别的方式,来减少程式设计上的错误。
using type annotation for function parameters helps ensure that a function will accept only data that it can process.
为函式参数使用型别附注,可帮助确保函式只接受它能处理的资料。