枚舉(Enumerations)###
枚舉為一組相關(guān)的值定義了一個(gè)共同的類型肯尺,使你可以在你的代碼中以類型安全的方式來使用這些值。
如果你熟悉 C 語(yǔ)言悠瞬,你會(huì)知道在 C 語(yǔ)言中,枚舉會(huì)為一組整型值分配相關(guān)聯(lián)的名稱蚜点。
Swift 中的枚舉更加靈活荆虱,不必給每一個(gè)枚舉成員提供一個(gè)值滥壕。如果給枚舉成員提供一個(gè)值(稱為“原始”值)纸颜,則該值的類型可以是字符串,字符绎橘,或是一個(gè)整型值或浮點(diǎn)數(shù)胁孙。
此外,枚舉成員可以指定任意類型的關(guān)聯(lián)值存儲(chǔ)到枚舉成員中称鳞,就像其他語(yǔ)言中的聯(lián)合體(unions)和變體(var iants)涮较。你可以在一個(gè)枚舉中定義一組相關(guān)的枚舉成員,每一個(gè)枚舉成員都可以有適當(dāng)類型的關(guān)聯(lián)值冈止。
在 Swift 中狂票,枚舉類型是一等(first-class)類型。它們采用了很多在傳統(tǒng)上只被類(class)所支持的特性熙暴,例如計(jì)算屬性(computed properties)闺属,用于提供枚舉值的附加信息,實(shí)例方法(instance methods)周霉,用于提供和枚舉值相關(guān)聯(lián)的功能掂器。
枚舉也可以定義構(gòu)造函數(shù)(initializers)來提供一個(gè)初始值;可以在原始實(shí)現(xiàn)的基礎(chǔ)上擴(kuò)展它們的功能;還可以遵循協(xié)議(protocols)來提供標(biāo)準(zhǔn)的功能。
** 1俱箱、枚舉語(yǔ)法**
使用 enum 關(guān)鍵詞來創(chuàng)建枚舉并且把它們的整個(gè)定義放在一對(duì)大括號(hào)內(nèi):
<pre>enum SomeEnumeration {
// 枚舉定義放在這里
}</pre>
下面是用枚舉表示指南針?biāo)膫€(gè)方向的例子:
<pre> enum CompassPoint {
case north
case south
case east
case west
}</pre>
注意:
與 C 和 Objective-C 不同国瓮,Swift 的枚舉成員在被創(chuàng)建時(shí)不會(huì)被賦予一個(gè)默認(rèn)的整型值。
在上面的CompassPoint 例子中狞谱, north 乃摹, south , east 和 west 不會(huì)被隱式地賦值為 0 跟衅, 1 峡懈, 2 和 3 。
相反与斤,這些枚舉成員本身就是完備的值,這些值的類型是已經(jīng)明確定義好的 CompassPoint 類型荚恶。
多個(gè)成員值可以出現(xiàn)在同一行上撩穿,用逗號(hào)隔開:
<pre> enum Planet {
case mercury, venus, earth, mars, jupiter, saturn, uranus, neptune
}</pre>
注意:枚舉名首字母應(yīng)該大寫,給枚舉起一個(gè)單數(shù)名字而不是復(fù)數(shù)谒撼,讀起來易于理解
<pre>var directionToHead = CompassPoint.west
//簡(jiǎn)寫:
directionToHead = .east</pre>
2食寡、使用 Switch 語(yǔ)句匹配枚舉值
directionToHead = .south
switch directionToHead {
case .north:
print("Lots of planets have a north")
case .south:
print("Watch out for penguins")
case .east:
print("Where the sun rises")
case .west:
print("Where the skies are blue")
}
// 打印 "Watch out for penguins”
3、關(guān)聯(lián)值
你可以定義 Swift 枚舉來存儲(chǔ)任意類型的關(guān)聯(lián)值廓潜,如果需要的話抵皱,每個(gè)枚舉成員的關(guān)聯(lián)值類型可以各不相同
例如善榛,假設(shè)一個(gè)庫(kù)存跟蹤系統(tǒng)需要利用兩種不同類型的條形碼來跟蹤商品。
有些商品上標(biāo)有使用 0 到 9 的數(shù)字的 UPC 格式的一維條形碼呻畸。每一個(gè)條形碼都有一個(gè)代表“數(shù)字系統(tǒng)”的數(shù)字移盆,該數(shù)字后接五位代表“廠商代碼”的數(shù)字,接下來是五位代表“產(chǎn)品代碼”的數(shù)字伤为。最后一個(gè)數(shù)字是“檢查”位咒循,用來驗(yàn)證代碼是否被正確掃描:
其他商品上標(biāo)有 QR 碼格式的二維碼,它可以使用任何 ISO 8859-1 字符绞愚,并且可以編碼一個(gè)最多擁有 2,953 個(gè)字符的字符串:
這便于庫(kù)存跟蹤系統(tǒng)用包含四個(gè)整型值的元組存儲(chǔ) UPC 碼叙甸,以及用任意長(zhǎng)度的字符串儲(chǔ)存 QR 碼。
<pre>enum Barcode {
case upc(Int, Int, Int, Int)
case qrCode(String)
}</pre>
定義一個(gè)名為 Barcode 的枚舉類型位衩,它的一個(gè)成員值是具有 (Int裆蒸,Int,Int糖驴,Int) 類型關(guān)聯(lián)值的 upc 僚祷,
另一個(gè)成員值是具有 String 類型關(guān)聯(lián)值的 qrCode 。
然后可以使用任意一種條形碼類型創(chuàng)建新的條形碼遂赠,例如:
var productBarcode = Barcode.upc(8, 85909, 51226, 3)
productBarcode = .qrCode("ABCDEFGHIJKLMNOP")
switch productBarcode {
case .upc(let numberSystem, let manufacturer, let product, let check):
print("UPC: \(numberSystem), \(manufacturer), \(product), \(check).")
case .qrCode(let productCode):
print("QR code: \(productCode).")
}
// 打印 "QR code: ABCDEFGHIJKLMNOP."
// 如果一個(gè)枚舉成員的所有關(guān)聯(lián)值都被提取為常量久妆,或者都被提取為變量,
// 為了簡(jiǎn)潔跷睦,你可以只在成員名稱前標(biāo)注一個(gè)let或者var:
switch productBarcode {
case let .upc(numberSystem, manufacturer, product, check):
print("UPC: \(numberSystem), \(manufacturer), \(product), \(check).")
case let .qrCode(productCode):
print("QR code: \(productCode).")
}
// 輸出 "QR code: ABCDEFGHIJKLMNOP."
** 3筷弦、原始值**
原始值可以是字符串,字符抑诸,或者任意整型值或浮點(diǎn)型值烂琴。每個(gè)原始值在枚舉聲明中必須是唯一的。
注意:原始值和關(guān)聯(lián)值是不同的蜕乡。原始值是在定義枚舉時(shí)被預(yù)先填充的值奸绷,像上述三個(gè) ASCII 碼。
對(duì)于一個(gè)特定的枚舉成員层玲,它的原始值始終不變号醉。關(guān)聯(lián)值是創(chuàng)建一個(gè)基于枚舉成員的常量或變量時(shí)才設(shè)置的值,枚舉成員的關(guān)聯(lián)值可以變化辛块。
- 原始值的隱式賦值:
在使用原始值為整數(shù)或者字符串類型的枚舉時(shí)畔派,不需要顯式地為每一個(gè)枚舉成員設(shè)置原始值,Swift 將會(huì)自動(dòng)為你賦值
<pre>enum Planet1: Int {
case mercury = 1, venus, earth, mars, jupiter, saturn, uranus, neptune
}</pre>
在上面的例子中润绵, Plant1.mercury 的顯式原始值為 1 线椰, Planet1.venus 的隱式原始值為 2 ,依次類推尘盼。
<pre> let earthsOrder = Planet1.earth.rawValue
print(earthsOrder)
// earthsOrder 值為 3
let sunsetDirection = CompassPoint.west
print(sunsetDirection)
// sunsetDirection 值為 "west"</pre>
-
使用原始值初始化枚舉實(shí)例
如果在定義枚舉類型的時(shí)候使用了原始值憨愉,那么將會(huì)自動(dòng)獲得一個(gè)初始化方法烦绳,這個(gè)方法接收一個(gè)叫做 rawValue 的參數(shù),參數(shù)類型即為原始值類型配紫,返回值則是枚舉成員或 nil 径密。
你可以使用這個(gè)初始化方法來創(chuàng)建一個(gè)新的枚舉實(shí)例。// 這個(gè)例子利用原始值 7 創(chuàng)建了枚舉成員 uranus : let possiblePlanet = Planet1(rawValue: 7) print(possiblePlanet ?? 7) // possiblePlanet 類型為 Planet? 值為 Planet.uranus
** 4笨蚁、遞歸枚舉**
遞歸枚舉是一種枚舉類型睹晒,它有一個(gè)或多個(gè)枚舉成員使用該枚舉類型的實(shí)例作為關(guān)聯(lián)值。
使用遞歸枚舉時(shí)括细,編譯器會(huì)插入一個(gè)間接層伪很。你可以在枚舉成員前加上** indirect** 來表示該成員可遞歸。
例如奋单,下面的例子中锉试,枚舉類型存儲(chǔ)了簡(jiǎn)單的算術(shù)表達(dá)式:
<pre>enum ArithmeticExpression {
case number(Int)
indirect case addition(ArithmeticExpression, ArithmeticExpression)
indirect case multiplication(ArithmeticExpression, ArithmeticExpression)
}</pre>
你也可以在枚舉類型開頭加上indirect
關(guān)鍵字來表明它的所有成員都是可遞歸的:
indirect enum ArithmeticExpression {
case number(Int)
case addition(ArithmeticExpression, ArithmeticExpression)
case multiplication(ArithmeticExpression, ArithmeticExpression)
}
上面定義的枚舉類型可以存儲(chǔ)三種算術(shù)表達(dá)式:
純數(shù)字、兩個(gè)表達(dá)式相加览濒、兩個(gè)表達(dá)式相乘呆盖。
枚舉成員 addition 和 multiplication 的關(guān)聯(lián)值也是算術(shù)表達(dá)式——這些關(guān)聯(lián)值使得嵌套表達(dá)式成為可能
下面的代碼展示了使用 ArithmeticExpression 這個(gè)遞歸枚舉創(chuàng)建表達(dá)式 (5 + 4) * 2
let five = ArithmeticExpression.number(5)
let four = ArithmeticExpression.number(4)
let sum = ArithmeticExpression.addition(five, four)
let product = ArithmeticExpression.multiplication(sum, ArithmeticExpression.number(2))
func evaluate(_ expression: ArithmeticExpression) -> Int {
switch expression {
case let .number(value):
return value
case let .addition(left, right):
return evaluate(left) + evaluate(right)
case let .multiplication(left, right):
return evaluate(left) * evaluate(right)
}
}
print(evaluate(product))
// 打印 "18"