欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

如何使用swift枚舉定義

本篇內(nèi)容主要講解“如何使用swift枚舉定義”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“如何使用swift枚舉定義”吧!

創(chuàng)新互聯(lián)是一家專(zhuān)業(yè)提供定襄企業(yè)網(wǎng)站建設(shè),專(zhuān)注與網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)HTML5、小程序制作等業(yè)務(wù)。10年已為定襄眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。

枚舉定義

//枚舉定義
enum CompassPoint {
    case north
    case south
    case east
    case west
}

//常配合switch case使用
let directionToHead = CompassPoint.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
 */

枚舉遍歷

//枚舉遍歷
enum Planet: CaseIterable {
    case mercury, venus, earth, mars, jupiter, saturn, uranus, neptune
}

for planet in Planet.allCases {
    print(planet)
}
/*
 mercury
 venus
 earth
 mars
 jupiter
 saturn
 uranus
 neptune
 */

關(guān)聯(lián)值

//關(guān)聯(lián)值
enum Barcode {
    case upc(Int, Int, Int, Int)
    case qrCode(String)
}

func showBarcode(_ barcode: Barcode) {
    switch barcode {
    case .upc(let numberSystem, let manufacturer, let product, let check):
        print("UPC:\(numberSystem), \(manufacturer), \(product), \(check)")
    case .qrCode(let productCode):
        print("QR Code: \(productCode)")
    }
}

var productBarcode = Barcode.upc(1, 1, 1, 1)
showBarcode(productBarcode)
//UPC:1, 1, 1, 1
productBarcode = Barcode.qrCode("hello")
showBarcode(productBarcode)
//QR Code: hello

原始值

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

從原始值初始化

//從原始值初始化
enum RoleStatus: Int,CaseIterable {
    case run
    case jump
    case walk
    case idle
}

for i in 0...RoleStatus.allCases.count {
    print(RoleStatus(rawValue: i))
}
/*
 Optional(__lldb_expr_8.RoleStatus.run)
 Optional(__lldb_expr_8.RoleStatus.jump)
 Optional(__lldb_expr_8.RoleStatus.walk)
 Optional(__lldb_expr_8.RoleStatus.idle)
 nil
 */

遞歸枚舉(indirect)

//遞歸枚舉 (5+4)*2
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))
//18

到此,相信大家對(duì)“如何使用swift枚舉定義”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!

新聞名稱(chēng):如何使用swift枚舉定義
分享URL:http://aaarwkj.com/article16/ihpegg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)網(wǎng)站內(nèi)鏈、搜索引擎優(yōu)化、網(wǎng)站策劃、標(biāo)簽優(yōu)化、品牌網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站
午夜草草视频在线观看| 亚洲成人日韩成人av| 国产精品天天影视久久| 日韩在线不卡av一区二区| 天堂社区人妻在线亚洲| 人妻少妇被粗大爽av| 福利视频免费观看欧美| 日韩精品在线播放观看| 日韩精品欧美精品一区二区| 极品美女粉嫩啪啪高潮| 最新日韩欧美不卡一二三区| 亚洲成综合人在线播放| 日本岛国大片在线视频| 最新天堂av资源在线观看| av毛片高清在线观看| 日本一区二区在线观看视频| 国产一区二区三区精品女同 | 欧美 日韩亚洲一区| 国产夫妻自拍在线视频| 美女一区二区三区日本美女在线观看| 成人污视频网站在线观看| 欧美激情日韩精品久久久| 天堂久久天堂av色综合| 成人黄网站色大片免费| 日韩美女av在线播放| 亚洲黄色片大奶子水多| 国产三级国产精品国产国在线观看 | 中文字幕乱码一区二区欧美| 国产国语久久91老女人| 熟妇人妻精品一区二区三区颏| 日产极品一区二区三区| 日韩午夜免费一区二区蜜桃| 色呦呦一区二区三区视频| 欧美国产综合欧美一区二区三区 | 欧美色高清视频在线播放| 国产精品专区日产一区| 国产精品白嫩初高中害羞小美女 | 内射极品美女在线观看| 可以直接看内射的视频| 麻豆视频传媒入口在线播放| 国产亚洲日本一区二区三区|