2019년 1월 18일 금요일

Enumerations

Swift Programming Language Guide: Enumerations, 코드부분



/* Enumerations */

// Enumeration Syntax


enum SomeEnumeration {
}

enum CompassPoint {
   case north
   case south
   case east
   case west
}

enum Planet {
   case mercury, venus, earth, mars, jupiter, saturn, uranus, neptune
}

var directionToHead = CompassPoint.west
directionToHead = .east

// Matching Enumeration Values with a Switch State

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")
}

let somePlanet = Planet.earth
switch somePlanet {
case .earth:
   print("Mostly harmless")
default:
   print("Not a safe place for humans")
}

// Iterating over Enumeration Cases

enum Beverage: CaseIterable {
   case coffee, tea, juice
}
let numberOfChoices = Beverage.allCases.count
for beverage in Beverage.allCases {
   print(beverage)
}

// Associated Values

enum Barcode {
   case upc(Int, Int, Int, Int)
   case qrCode(String)
} // "Define an enumeration type called Barcode, which can take either a value of upc an associated value of type(Int, Int, Int, Int), or a value of qrCode with an associated value of type String."

var productBarcode = Barcode.upc(8, 85909, 51226, 3)
productBarcode = .qrCode("ABCDERFHIJKLMNOP")

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)")
}

switch productBarcode {
case let .upc(numberSystem, manufacturer, product, check):
   print("UPC: \(numberSystem), \(manufacturer), \(product), \(check)")
case let .qrCode(productCode):
   print("QR code: \(productCode)")
}

// Raw Values

enum ASCIIControlCharacter: Character {
   case tab = "\t"
   case lineFeed = "\n"
   case carriageReturn = "\r"
}

// Implicitly Assigned Raw Values

enum Planet: Int {
   case mercury = 1, venus, earth, mars, jupiter, saturn, uranus, neptune
}

enum CompassPoint: String {
   case north, south, east, west
}

let earthsOrder = Planet.earth.rawValue
let sunsetDirection = CompassPoint.west.rawValue

// Initializing from a Raw Value

let possiblePlanet = Planet(rawValue: 7)
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)")
}

// Recursive Enumerations

enum ArithmeticExpression {
   case number(Int)
   indirect case addition(ArithmeticExpression, ArithmeticExpression)
   indirect case multiplecation(ArithmeticExpression, ArithmeticExpression)
}

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))