码迷,mamicode.com
首页 > 其他好文 > 详细

TypeScript之枚举

时间:2019-11-06 18:23:05      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:类型   length   数字   一个开始   键值对   ror   uil   dir   interface   

什么是枚举类型,有什么作用?

枚举类型就是一个用来组织一些有相似之处的常量的对象,作用就是管理常量,让常量更规范,统一。例:

 enum Direction { Up = 1, Down, Left, Right }

使用时直接用“.”的方式使用:

Direction.Up、Direction.Down ...

枚举类型的特点:

1.手动赋值时从第一个开始自动赋值0,后来依次+1,

2.未手动赋值的项只能在第一个,或只能在赋值为数字的项的后面,

3枚举的键值对会被翻转声明(反向映射)

存疑:

联合枚举与枚举成员的类型

官方文档

enum ShapeKind { Circle, Square, }

interface Circle { kind: ShapeKind.Circle; radius: number; }

interface Square { kind: ShapeKind.Square; sideLength: number; }

let c: Circle = {

kind: ShapeKind.Square,  // 这里写任何数字都能通过编译,why

// ~~~~~~~~~~~~~~~~ Error!

radius: 100, }

TypeScript之枚举

标签:类型   length   数字   一个开始   键值对   ror   uil   dir   interface   

原文地址:https://www.cnblogs.com/superjsman/p/11806878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!