参考文献: TypeScript 中文网 1. 基础类型 布尔型:boolean 数字:number 字符串:string 数组 // 两种方式 let list: number[] = [1, 2, 3]; let list: Array<number> = [1, 2, 3]; 元组:元组类型