【TypeScript入门】TypeScript入门篇——枚举(enum)
// 定义一个简单的枚举
enum Direction {
NORTH,
SOUTH,
EAST,
WEST
}
// 使用枚举
function move(direction: Direction) {
switch (direction) {
case Direction.NORTH:
console.log("向北移动");
break;
case Direction.SOUTH:
console.log("向南移动");
break;
case Direction.EAST:
console.log("向东移动");
break;
case Direction.WEST:
console.log("向西移动");
break;
}
}
// 使用枚举的示例
move(Direction.EAST); // 输出: "向东移动"
这段代码定义了一个名为Direction
的枚举,其中包含了四个方向:北、南、东、西。move
函数接受一个Direction
作为参数,并根据传入的枚举值执行不同的操作。这是TypeScript中枚举的基本使用方法。
评论已关闭