ts常见类型定义
在TypeScript中,常见的类型定义包括基本类型、对象类型、数组类型、函数类型等。以下是一些示例:
// 基本类型
let isDone: boolean = false;
// 数字类型
let decimal: number = 6;
let hex: number = 0xf00d;
// 字符串类型
let color: string = "blue";
color = 'red';
// 数组类型
let list: number[] = [1, 2, 3];
let list: Array<number> = [1, 2, 3];
// 元组类型(固定长度和类型的数组)
let x: [string, number];
x = ['hello', 10]; // OK
// x = [10, 'hello']; // Error
// 枚举类型
enum Color {
Red,
Green,
Blue,
}
let c: Color = Color.Green;
// 任意类型(any)
let notSure: any = 4;
notSure = "maybe a string instead";
notSure = false; // OK, but no type checking
// 空类型(void)
function warnUser(): void {
console.log("This is a warning message");
}
// 类型别名
type Name = string;
type NameResolver = () => string;
type NameOrResolver = Name | NameResolver;
这些是TypeScript中常见的类型定义示例。通过这些类型定义,TypeScript可以在编译时进行类型检查,帮助发现潜在的错误。
评论已关闭