一,枚举的定义,结果和使用
枚举定义了一个通用类型的一组相关的值,使我们可以在自己的代码中以一个安全的方式来使用这些值。
枚举的结构:
enum SomeEnumeration {
// enumeration definition goes here
}
枚举的使用:
// 定义枚举
enum Direction {
case east
case south
case west
case north
}
// 调用枚举
var direct = Direction.east
print("现在的方向是:\(direct)")
out:
现在的方向是:east
二,枚举在switch语句中的使用
定义枚举时,里面的case看上去就是为switch准备的,天生一对.
// 调用枚举
var direct = Direction.east
switch direct {
case Direction.east:
do{
print("现在的方向是:东")
}
case Direction.south:
do{
print("现在的方向是:南")
}
case Direction.west:
do{
print("现在的方向是:西")
}
case Direction.north:
do{
print("现在的方向是:北")
}
}
out:
现在的方向是:东
三,枚举关联值
我们可以定义Swift的枚举存储任何类型的相关值,如果需要,每个成员的数据类型可以是各不相同的。枚举的这种特性与其他语言中的可辨识联合,标签联合,或变体相似。例如,假设一个库存跟踪系统需要利用两种不同类型的条形码来跟踪商品。
var goods = Barcode.UPCA(8, 855, 11, 3)
goods = Barcode.QRCode("TEST")
switch goods {
case let .UPCA(first, second, third, forth):
do{
print("first is:\(first), second is \(second), third is \(third), forth is \(forth)")
}
case let .QRCode(qr):
do{
print("qr is \(qr)")
}
}
out:
qr is TEST
四,枚举原始值
作为性管制的替代物,枚举成员可以被默认值(原始值)预填充,这些原始值有相同的类型,如:
enum Animate: Int {
case pig = 1
case dog
case bird
case frog
}
print("dog 的初始值:\(Animate.dog.rawValue),hashValue:\(Animate.dog.hashValue)")
out:
dog 的初始值:2,hashValue:1
hi 各位大佬,如果您喜欢我的文章,可以在以下平台关注我
微博:顺扬sky
简书:顺扬sky
掘金:顺扬sky
网友评论