Skip to content

理解 TypeScript 类型注解#

字数
482 字
阅读时间
2 分钟

摘要:在本教程中,你将学习TypeScript中的类型注解(type annotations)。

TypeScript 里的类型注解是什么#

TypeScript使用类型注解来明确指定标识符如变量、函数、对象等的类型。

TypeScript在标识符后使用语法:type作为类型注解 ,其中type可以是任何有效的类型。

一旦一个标识符被注解了一个类型,它只能作为那个类型使用。如果标识符被用作不同的类型,TypeScript编译器将发出一个错误。

变量和常量中的类型注解#

下面的语法显示了如何为变量和常量指定类型注解:

ts

let variableName: type;
let variableName: type = value;
const constantName: type = value;

在这种语法中,类型注解在变量或常量名称之后,前面有一个冒号(:)。

下面的例子对一个变量使用了 number 注解。

ts

let counter: number;

在这之后,你只能给counter变量分配一个数字。

ts

counter = 1;

如果你给counter变量赋值一个字符串,你会得到一个错误:

ts

let counter: number;
counter = 'Hello'; // 编译错误

Error:

ts

Type '"Hello"' is not assignable to type 'number'.

在一个声明语句中,你可以为一个变量使用类型注解并对它进行初始化,就像这样:

ts

let counter: number = 1;

在这个例子中,我们为counter变量使用 number 注解,并将其初始化为1。

下面展示了基本类型注解的其他例子:

ts

let name: string = 'John';
let age: number = 25;
let active: boolean = true;

在这个例子中,name变量得到 string 类型,age变量得到 number 类型,active变量得到 boolean 类型。

![[理解 TypeScript 类型注解 _ 🥤typescript tutorial.html]]

贡献者

The avatar of contributor named as sunchengzhi sunchengzhi

文件历史

撰写