Swift 3.0基礎學習之枚舉類型。本站提示廣大學習愛好者:(Swift 3.0基礎學習之枚舉類型)文章只能為提供參考,不一定能成為您想要的結果。以下是Swift 3.0基礎學習之枚舉類型正文
枚舉語法
使用關鍵字 enum 定義一個枚舉
enum SomeEnumeration { // enumeration definition goes here }
例如,指南針有四個方向:
enum CompassPoint { case north case south case east case west }
這裡跟 c 和 objective-c 不一樣的是,Swift 的枚舉成員在創建的時候沒有給予默認的整型值。所以上面代碼中的東南西北並不是0到3,相反,不同的枚舉類型本身就是完全成熟的值,具有明確定義的CompassPoint類型。
也可以聲明在同一行中:
enum Planet { case mercury, venus, earth, mars, jupiter, saturn, uranus, neptune }
枚舉賦值:
var directionToHead = CompassPoint.west
一旦 directionToHead 明確為 CompassPoint 類型的變量,後面就可以使用點語法賦值:
directionToHead = .east
Switch 表達式的枚舉值匹配
switch 表達式如下:
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") } // Prints "Watch out for penguins"
當然這裡也可以加上 default 以滿足所有的情況:
let somePlanet = Planet.earth switch somePlanet { case .earth: print("Mostly harmless") default: print("Not a safe place for humans") } // Prints "Mostly harmless"
關聯值
在 Swift 中,使用枚舉來定義一個產品條形碼:
enum Barcode { case upc(Int, Int, Int, Int) case qrCode(String) }
可以這樣理解上面這段代碼:定義一個叫 Barcode 的枚舉類型,帶有值類型(Int,Int,Int,Int)的 upc和值類型(String)
現在可以這樣創建其中一種類型的條形碼:
var productBarcode = Barcode.upc(8, 85909, 51226, 3)
同一產品的另外一個類型的條形碼可以這樣賦值:
productBarcode = .qrCode("ABCDEFGHIJKLMNOP")
可以用 switch 來查看兩種不同的條形碼類型:
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).") } // Prints "QR code: ABCDEFGHIJKLMNOP."
上面的寫法也可以改為:
switch productBarcode { case let .upc(numberSystem, manufacturer, product, check): print("UPC : \(numberSystem), \(manufacturer), \(product), \(check).") case let .qrCode(productCode): print("QR code: \(productCode).") } // Prints "QR code: ABCDEFGHIJKLMNOP."
原始值
這裡是一個保存原始 ASCII 值的枚舉類型:
enum ASCIIControlCharacter: Character { case tab = "\t" case lineFeed = "\n" case carriageReturn = "\r" }
和上面關聯值類似,在枚舉中也可以指定每個 case 的默認值(raw values)。
值得注意的是,原始值和關聯值不一樣,原始值是在第一次定義枚舉代碼的時候已經設置好的,所有同類型的枚舉 case 的原始值都是一樣的。而關聯值是你創建一個基於枚舉 case新的常量或者變量的時候設置的,可以在每次你創建的時候都使用不一樣的值。
隱式分配的原始值
如果枚舉中 case 的原始值是整型或者字符串的時候,你不需要給每個 case 分配原始值,Swift 會自動幫你分配好值。
例如:
enum Planet: Int { case mercury = 1, venus, earth, mars, jupiter, saturn, uranus, neptune }
Planet.mercury 原始值為1,Planet.venus 擁有一個隱式的原始值為2,以此類推。
如果枚舉的原始值是 string 類型,那麼他的原始值就是 case 名稱的文本,例如:
enum CompassPoint: String { case north, south, east, west } CompassPoint.south 的隱式原始值是"south", 以此類推。 let earthsOrder = Planet.earth.rawValue // earthsOrder is 3 let sunsetDirection = CompassPoint.west.rawValue // sunsetDirection is "west"
從原始值初始化
如果你定義一個原始值類型的枚舉,這時枚舉會自動創建一個帶有原始值類型的初始化器(參數名稱為 rawValue),例如:
let possiblePlanet = Planet(rawValue: 7) // possiblePlanet is of type Planet? and equals Planet.uranus
不是所有的 Int 值都可以找到對應的 planet,所以原始值初始化器會返回一個 optional 的枚舉 case,上面的例子中的 possiblePlanet 是 Planet? 類型。
如果你想找原始值為11的 planet,初始化器將返回 nil:
let positionToFind = 11 if let somePlanet = Planet(rawValue: positionToFind) { switch somePlanet { case .earth: print("Mostly harmless") default: print("Not a safe place for humans") } } else { print("There isn't a planet at position \(positionToFind)") } // Prints "There isn't a planet at position 11"
遞歸枚舉
遞歸枚舉是一個包含有一個或多個枚舉 case 的關聯值枚舉實例的枚舉,使用關鍵字 indirect 標明某個枚舉 case 是遞歸的。
例如,下面是一個保存簡單算法表達式的枚舉:
enum ArithmeticExpression { case number(Int) indirect case addition(ArithmeticExpression, ArithmeticExpression) indirect case multiplication(ArithmeticExpression, ArithmeticExpression) }
你也可以直接把 indirect 寫在枚舉定義的最前面:
indirect enum ArithmeticExpression { case number(Int) case addition(ArithmeticExpression, ArithmeticExpression) case multiplication(ArithmeticExpression, ArithmeticExpression) }
下面的代碼是示例如何創建這個遞歸枚舉:
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)) // Prints "18"
上面例子的算法表達式是:(5 + 4) * 2,結果為18
參考英語原文:
https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/Enumerations.html#//apple_ref/doc/uid/TP40014097-CH12-ID145
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者使用Swift能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對的支持。