1. {
  2. let str: string = ‘this is string’;
  3. let num: number = 1;
  4. let bool: boolean = true;
  5. }
  6. {
  7. const str: string = ‘this is string’;
  8. const num: number = 1;
  9. const bool: boolean = true;
  10. }
在很多情况下,TypeScript 会根据上下文环境自动推断出变量的类型,无须我们再写明类型注解。因此,上面的示例可以简化为如下所示内容:
  1. {
  2. let str = ‘this is string’; // 等价
  3. let num = 1; // 等价
  4. let bool = true; // 等价
  5. }
  6. {
  7. const str = ‘this is string’; // 不等价
  8. const num = 1; // 不等价
  9. const bool = true; // 不等价
  10. }
注意:这里说的仅仅是“简化”,而不是说两个示例完全等价,接下来我们会进一步介绍。 我们把 TypeScript 这种基于赋值表达式推断类型的能力称之为“类型推断”

类型推断

在 TypeScript 中,类型标注声明是在变量之后(即类型后置),它不像 Java 语言一样,先声明变量的类型,再声明变量的名称。 使用类型标注后置的好处是编译器可以通过代码所在的上下文推导其对应的类型,无须再声明变量类型,具体示例如下:
  1. {
  2. let x1 = 42; // 推断出 x1 的类型是 number
  3. let x2: number = x1; // ok
  4. }
在上述代码中,x1 的类型被推断为 number,将变量赋值给 number 类型的变量 x2 后,不会出现任何错误。 在 TypeScript 中,具有初始化值的变量、有默认值的函数参数、函数返回的类型都可以根据上下文推断出来。比如我们能根据 return 语句推断函数返回的类型,如下代码所示:
  1. {
  2. /* 根据参数的类型,推断出返回值的类型也是 number /
  3. functionadd1(a: number, b: number) {
  4. return a + b;
  5. }
  6. const x1= add1(1, 1); // 推断出 x1 的类型也是 number
  7. /* 推断参数 b 的类型是数字或者 undefined,返回值的类型也是数字 /
  8. functionadd2(a: number, b = 1) {
  9. return a + b;
  10. }
  11. const x2 = add2(1);
  12. const x3 = add2(1, ‘1’); // ts(2345) Argument of type ‘“1”‘ is not assignable to parameter of type ‘number | undefined
  13. }
在上述 add1 函数中,我们 return 了变量 a + b 的结果,因为 a 和 b 的类型为 number,所以函数返回类型被推断为 number。 当然,拥有默认值的函数参数的类型也能被推断出来。比如上述 add2 函数中,b 参数被推断为 number | undefined 类型,如果我们给 b 参数传入一个字符串类型的值,由于函数参数类型不一致,此时编译器就会抛出一个 ts(2345) 错误。

上下文推断

通过类型推断的例子,我们发现变量的类型可以通过被赋值的值进行推断。除此之外,在某些特定的情况下,我们也可以通过变量所在的上下文环境推断变量的类型,具体示例如下:
  1. {
  2. type Adder = (a: number, b: number) =>number;
  3. const add: Adder = (a, b) => {
  4. return a + b;
  5. }
  6. const x1 = add(1, 1); // 推断出 x1 类型是 number
  7. const x2 = add(1, ‘1’); // ts(2345) Argument of type ‘“1”‘ is not assignable to parameter of type ‘number
  8. }
这里我们定义了一个实现加法功能的函数类型 Adder(定义的 Adder 类型使用了 type 类型别名),声明了add变量的类型为 Adder 并赋值一个匿名箭头函数,箭头函数参数 a 和 b 的类型和返回类型都没有显式声明。 TypeScript 通过add的类型 Adder 反向(通过变量类型推断出值的相关类型)推断出箭头函数参数及返回值的类型,也就是说函数参数 a、b,以及返回类型在这个变量的声明上下文中被确定了。 正是得益于 TypeScript 这种类型推导机制和能力,使得我们无须显式声明,即可直接通过上下文环境推断出变量的类型,也就是说此时类型可缺省。 下面回头看最前面的示例(如下所示),我们发现这些缺省类型注解的变量还可以通过类型推断出类型。
  1. {
  2. let str = ‘this is string’; // str: string
  3. let num = 1; // num: number
  4. let bool = true; // bool: boolean
  5. }
  6. {
  7. const str = ‘this is string’; // str: ‘this is string’
  8. const num = 1; // num: 1
  9. const bool = true; // bool: true
  10. }
如上述代码中注释说明,通过 let 和 const 定义的赋予了相同值的变量,其推断出来的类型不一样。比如同样是 ‘this is string’(这里表示一个字符串值),通过 let 定义的变量类型是 string,而通过 const 定义的变量类型是 ‘this is string’(这里表示一个字符串字面量类型)。这里我们可以通过 VS Code hover 示例中的变量查看类型,验证一下这个结论。

字面量类型

在 TypeScript 中,字面量不仅可以表示值,还可以表示类型,即所谓的字面量类型。 目前,TypeScript 支持 3 种字面量类型:字符串字面量类型、数字字面量类型、布尔字面量类型,对应的字符串字面量、数字字面量、布尔字面量分别拥有与其值一样的字面量类型,具体示例如下:
  1. {
  2. let specifiedStr: ‘this is string’ = ‘this is string’;
  3. let specifiedNum: 1 = 1;
  4. let specifiedBoolean: true = true;
  5. }

字面量类型是集合类型的子类型,它是集合类型的一种更具体的表达。比如 ‘this is string’ (这里表示一个字符串字面量类型)类型是 string 类型(确切地说是 string 类型的子类型),而 string 类型不一定是 ‘this is string’(这里表示一个字符串字面量类型)类型,如下具体示例:

  1. {
  2. let specifiedStr: ‘this is string’ = ‘this is string’;
  3. let str: string = ‘any string’;
  4. specifiedStr = str; // ts(2322) 类型 ‘“string”‘ 不能赋值给类型 ‘this is string’
  5. str = specifiedStr; // ok
  6. }
这里,我们通过一个更通俗的说法来理解字面量类型和所属集合类型的关系。 比如说我们用“马”比喻 string 类型,即“黑马”代指 ‘this is string’ 类型,“黑马”肯定是“马”,但“马”不一定是“黑马”,它可能还是“白马”“灰马”。因此,‘this is string’ 字面量类型可以给 string 类型赋值,但是 string 类型不能给 ‘this is string’ 字面量类型赋值,这个比喻同样适合于形容数字、布尔等其他字面量和它们父类的关系

字符串字面量类型

一般来说,我们可以使用一个字符串字面量类型作为变量的类型,如下代码所示:
  1. let hello: ‘hello’ = ‘hello’;
  2. hello = ‘hi’; // ts(2322) Type ‘“hi”‘ is not assignable to type ‘“hello”‘
实际上,定义单个的字面量类型并没有太大的用处,它真正的应用场景是可以把多个字面量类型组合成一个联合类型,用来描述拥有明确成员的实用的集合。 如下代码所示,我们使用字面量联合类型描述了一个明确、可 ‘up’ 可 ‘down’ 的集合,这样就能清楚地知道需要的数据结构了。
  1. type Direction = ‘up’ | ‘down’;
  2. functionmove(dir: Direction) {
  3. // …
  4. }
  5. move(‘up’); // ok
  6. move(‘right’); // ts(2345) Argument of type ‘“right”‘ is not assignable to parameter of type ‘Direction’

通过使用字面量类型组合的联合类型,我们可以限制函数的参数为指定的字面量类型集合,然后编译器会检查参数是否是指定的字面量类型集合里的成员。

因此,相较于使用 string 类型,使用字面量类型(组合的联合类型)可以将函数的参数限定为更具体的类型。这不仅提升了程序的可读性,还保证了函数的参数类型,可谓一举两得。

数字字面量类型及布尔字面量类型

数字字面量类型和布尔字面量类型的使用与字符串字面量类型的使用类似,我们可以使用字面量组合的联合类型将函数的参数限定为更具体的类型,比如声明如下所示的一个类型 Config:
  1. interface Config {
  2. size: ‘small’ | ‘big’;
  3. isEnable: true | false;
  4. margin: 0 | 2 | 4;
  5. }
在上述代码中,我们限定了 size 属性为字符串字面量类型 ‘small’ | ‘big’,isEnable 属性为布尔字面量类型 true | false(布尔字面量只包含 true 和 false,true | false 的组合跟直接使用 boolean 没有区别),margin 属性为数字字面量类型 0 | 2 | 4。

介绍完三种字面量类型后,我们再来看看通过 let 和 const 定义的变量的值相同,而变量类型不一致的具体原因。

我们先来看一个 const 示例,如下代码所示:
  1. {
  2. const str = ‘this is string’; // str: ‘this is string’
  3. const num = 1; // num: 1
  4. const bool = true; // bool: true
  5. }
在上述代码中,我们将 const 定义为一个不可变更的常量,在缺省类型注解的情况下,TypeScript 推断出它的类型直接由赋值字面量的类型决定,这也是一种比较合理的设计。 接下来我们看看如下所示的 let 示例,此时理解起来可能会稍微难一些。
  1. {
  2. let str = ‘this is string’; // str: string
  3. let num = 1; // num: number
  4. let bool = true; // bool: boolean
  5. }
在上述代码中,缺省显式类型注解的可变更的变量的类型转换为了赋值字面量类型的父类型,比如 str 的类型是 ‘this is string’ 类型(这里表示一个字符串字面量类型)的父类型 string,num 的类型是 1 类型的父类型 number。 这种设计符合编程预期,意味着我们可以分别赋予 str 和 num 任意值(只要类型是 string 和 number 的子集的变量):
  1. str = ‘any string’;
  2. num = 2;
  3. bool = false;
我们将 TypeScript 的字面量子类型转换为父类型的这种设计称之为 “literal widening”,也就是字面量类型的拓宽,比如上面示例中提到的字符串字面量类型转换成 string 类型

Literal Widening

所有通过 let 或 var 定义的变量、函数的形参、对象的非只读属性,如果满足**指定了初始值且未显式添加类型注解**的条件,那么它们推断出来的类型就是指定的初始值字面量类型拓宽后的类型,这就是字面量类型拓宽。

下面我们通过字符串字面量的示例来理解一下字面量类型拓宽:
  1. {
  2. let str = ‘this is string’; // 类型是 string
  3. let strFun = (str = ‘this is string) => str; // 类型是 (str?: string) => string;
  4. const specifiedStr = ‘this is string’; // 类型是 ‘this is string’
  5. let str2 = specifiedStr; // 类型是 ‘string’
  6. let strFun2 = (str = specifiedStr) => str; // 类型是 (str?: string) => string;
  7. }
因为第 2~3 行满足了 let、形参且未显式声明类型注解的条件,所以变量、形参的类型拓宽为 string(形参类型确切地讲是 string | undefined)。 因为第 5 行的常量不可变更,类型没有拓宽,所以 specifiedStr 的类型是 ‘this is string’ 字面量类型。 第 7~8 行,因为赋予的值 specifiedStr 的类型是字面量类型,且没有显式类型注解,所以变量、形参的类型也被拓宽了。 其实,这样的设计符合实际编程诉求。我们设想一下,如果 str2 的类型被推断为 ‘this is string’,它将不可变更,因为赋予任何其他的字符串类型的值都会提示类型错误。 基于字面量类型拓宽的条件,我们可以通过如下所示代码添加显示类型注解控制类型拓宽行为
  1. {
  2. const specifiedStr: ‘this is string’ = ‘this is string’; // 类型是 ‘“this is string”‘
  3. let str2 = specifiedStr; // 即便使用 let 定义,类型是 ‘this is string’
  4. }

Type Widening

比如对 null 和 undefined 的类型进行拓宽,通过 let、var 定义的变量如果满足未显式声明类型注解且被赋予了 null 或 undefined 值,则推断出这些变量的类型是 any
  1. {
  2. let x = null; // 类型拓宽成 any
  3. let y = undefined; // 类型拓宽成 any
  4. /* ——-分界线———- /
  5. const z = null; // 类型是 null
  6. /* ——-分界线———- /
  7. let anyFun = (param = null) => param; // 形参类型是 null
  8. let z2 = z; // 类型是 null
  9. let x2 = x; // 类型是 null
  10. let y2 = y; // 类型是 undefined
  11. }
注意:在严格模式下,一些比较老的版本中(2.0)null 和 undefined 并不会被拓宽成“any”。因此,某些过时的资料中会存在与课程不一致的解释。 在现代 TypeScript 中,以上示例的第 2~3 行的类型拓宽更符合实际编程习惯,我们可以赋予任何其他类型的值给具有 null 或 undefined 初始值的变量 x 和 y。 示例第 7~10 行的类型推断行为因为开启了 strictNullChecks=true(说明:本课程所有示例都基于严格模式编写),此时我们可以从类型安全的角度试着思考一下:这几行代码中出现的变量、形参的类型为什么是 null 或 undefined,而不是 any?因为前者可以让我们更谨慎对待这些变量、形参,而后者不能。

Type Narrowing

在 TypeScript 中,我们可以通过某些操作将变量的类型由一个较为宽泛的集合缩小到相对较小、较明确的集合,这就是 “Type Narrowing”。 ts中的类型守卫就是条件判断,在 TypeScript 类型层面,条件判断顺带的会触发类型缩小 比如,我们可以使用类型守卫将函数参数的类型从 any 缩小到明确的类型,具体示例如下:
  1. {
  2. let func = (anything: any) => {
  3. if (typeof anything === ‘string’) {
  4. return anything; // 类型是 string
  5. } elseif (typeof anything === ‘number’) {
  6. return anything; // 类型是 number
  7. }
  8. returnnull;
  9. };
  10. }
在 VS Code 中 hover 到第 4 行的 anything 变量提示类型是 string,到第 6 行则提示类型是 number。 同样,我们可以使用类型守卫将联合类型缩小到明确的子类型,具体示例如下:
  1. {
  2. let func = (anything: string | number) => {
  3. if (typeof anything === ‘string’) {
  4. return anything; // 类型是 string
  5. } else {
  6. return anything; // 类型是 number
  7. }
  8. };
  9. }
当然,我们也可以通过字面量类型等值判断(===)或其他控制流语句(包括但不限于 if、三目运算符、switch 分支)将联合类型收敛为更具体的类型,如下代码所示:
  1. {
  2. type Goods = ‘pen’ | ‘pencil’ |‘ruler’;
  3. const getPenCost = (item: ‘pen’) =>2;
  4. const getPencilCost = (item: ‘pencil’) =>4;
  5. const getRulerCost = (item: ‘ruler’) =>6;
  6. const getCost = (item: Goods) => {
  7. if (item === ‘pen’) {
  8. return getPenCost(item); // item => ‘pen’
  9. } elseif (item === ‘pencil’) {
  10. return getPencilCost(item); // item => ‘pencil’
  11. } else {
  12. return getRulerCost(item); // item => ‘ruler’
  13. }
  14. }
  15. }
在上述 getCost 函数中,接受的参数类型是字面量类型的联合类型,函数内包含了 if 语句的 3 个流程分支,其中每个流程分支调用的函数的参数都是具体独立的字面量类型。 那为什么类型由多个字面量组成的变量 item 可以传值给仅接收单一特定字面量类型的函数 getPenCost、getPencilCost、getRulerCost 呢?这是因为在每个流程分支中,编译器知道流程分支中的 item 类型是什么。比如 item === ‘pencil’ 的分支,item 的类型就被收缩为“pencil”。 事实上,如果我们将上面的示例去掉中间的流程分支,编译器也可以推断出收敛后的类型,如下代码所示:
  1. const getCost = (item: Goods) => {
  2. if (item === ‘pen’) {
  3. item; // item => ‘pen’
  4. } else {
  5. item; // => ‘pencil’ | ‘ruler’
  6. }
  7. }