ts 的枚举类型 枚举类型默认从 0 开始 123456enum SexType { BOY, GIRL,}console.log(SexType.BOY) // 0console.log(SexType.GIRL) // 1 枚举编号会自动递增 123456enum SexType { BOY = 2, GIRL,}console.log(SexType.BOY) // 2console.log(SexType.GIRL) // 3 枚举可以自定义 123456enum SexType { BOY = "男", GIRL = "女",}console.log(SexType.BOY) // 男console.log(SexType.GIRL) // 女