在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
【学习笔记】TypeScript typeof 操作符原文:http://www.semlinker.com/ts-typeof/
在TypeScript中,typeof操作符可以用来获取一个变量或对象的类型。 interface Person { name: string; age: number; } const sem: Person = { name: "semlinker", age: 30} type Sem = typeof sem; // type Sem = Person 在上面代码中,我们通过typeof操作符获取sem变量的类型并赋值给Sem类型变量,之后我们就可以使用Sem类型: const lolo: Sem = { name: "lolo", age: 5 } 你也可以对嵌套对象执行相同的操作: const kakuqo = { name: "kakuqo", age: 30, address: { province: '福建', city: '厦门' } } type Kakuqo = typeof kakuqo; /** * type Kakuqo = { * name: string; * age: number; * address: { * province: string; * city: string; * } * } */
此外,typeof操作符除了可以获取对象的结构类型之外,它也可以用来获取函数对象的类型,比如: function toArray(x: number): Array<number> { return [x] } type Func = typeof toArray; // -> (x: number) => number[]
|
请发表评论