1、类型注解
在 TypeScript 中,可以使用类型注解来明确标识类型。如:
const greeting: string = 'hello world'
2、类型检查
- 静态类型检查:在程序编译时进行 —— (两种静态类型检查模式:非严格类型检查【默认方式】;严格类型检查)
- 动态类型检查:在程序运行时进行
3、TypeScript 中的原始类型:
- boolean
- string
- number
- null
- undefined
- bigint
- symbol
- void
- 枚举类型
- 字面量类型
4、Nullable 类型
TypeScript 中的 Nullable 类型指的是值可以为 undefined 或 null 的类型。
5、void 类型:表示某个值不存在,该类型用作函数的返回值类型
若一个函数没有返回值,那该函数的返回值类型为 void 类型(在其他地方使用 void 类型是无意义的)
6、单元类型:仅包含一个可能值的类型
TypeScript 中的单元类型有以下几种:
- undefined
- null
- unique symbol
- void
- 字面量类型
- 联合枚举成员类型
7、顶端类型
顶端类型是一种通用类型,有时也称为通用超类型,因为在类型系统中,所有类型都是顶端类型的子类型。
顶端类型有以下两种:
- any
- unknown
标签:TypeScript,undefined,22,检查,void,09,类型,null From: https://www.cnblogs.com/bala/p/18426057