1. 布尔类型(Boolean)
布尔类型表示逻辑上的真或假。在 TypeScript 中,布尔类型只有两个可能的值:true
和 false
。例如:typescriptlet isDone: boolean = false;
### 2. 数字类型(Number)数字类型可以表示整数和浮点数。在 TypeScript 中,所有数字都是浮点数。例如:typescriptlet decimal: number = 6;let hex: number = 0xf00d;let binary: number = 0b1010;let octal: number = 0o744;
### 3. 字符串类型(String)字符串类型表示文本数据。在 TypeScript 中,可以使用单引号或双引号来表示字符串。例如:typescriptlet color: string = "blue";let sentence: string = 'Hello, world!';
### 4. 数组类型(Array)数组类型用于表示同类型的元素集合。在 TypeScript 中,可以通过在元素类型后面添加[]
来定义数组类型。例如:typescriptlet numbers: number[] = [1, 2, 3, 4, 5];let colors: string[] = ["red", "green", "blue"];
也可以使用泛型数组类型:typescriptlet list: Array<number> = [1, 2, 3];
### 5. 元组类型(Tuple)元组类型允许表示具有固定数量元素的数组,每个元素的类型可以不同。例如:typescriptlet x: [string, number];x = ["hello", 10]; // OKx = [10, "hello"]; // Error
### 6. 枚举类型(Enum)枚举类型用于定义数值集合,可以更友好地表示一组相关的常量值。例如:typescriptenum Color { Red, Green, Blue,}let c: Color = Color.Green;console.log(c); // 输出:1
### 7. 任意类型(Any)任意类型可以表示任何类型的值,适用于在编程阶段不确定变量类型的情况。例如:typescriptlet notSure: any = 4;notSure = "maybe a string instead";notSure = false;
### 8. 空类型(Void)空类型表示没有任何类型。通常用于函数没有返回值时的标注。例如:typescriptfunction warnUser(): void { console.log("This is a warning message");}
### 9. Null 和 Undefined在 TypeScript 中,null
和 undefined
是所有类型的子类型。可以使用 --strictNullChecks
标志来启用严格的空值检查。例如:typescriptlet u: undefined = undefined;let n: null = null;