欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

深入講解Swift中的模式匹配

 更新時(shí)間:2018年08月15日 10:48:43   作者:devedbox  
在Swift中,一些模式已經(jīng)被語(yǔ)言特性所吸收,你在使用Swift甚至察覺(jué)不出這類(lèi)問(wèn)題的存在,下面這篇文章主要給大家介紹了關(guān)于Swift中模式匹配的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考下

模式匹配

模式匹配是 Swift 中非常常見(jiàn)的一種編程模式,使用模式匹配,可以幫助我們寫(xiě)出簡(jiǎn)明、清晰以及易讀的代碼,使我們的代碼變得簡(jiǎn)潔而強(qiáng)大。

條件判斷中的模式匹配

條件判斷是我們使用最普遍的流程控制,在 Swift 中,只能接受 Bool 類(lèi)型的值作為條件體;除了直接判斷 Bool 值之外,我們還能使用使用條件語(yǔ)句進(jìn)行可選綁定,這在我們開(kāi)發(fā)中是非常常用的方式。

匹配枚舉值

在 Swift 中,創(chuàng)建的枚舉類(lèi)型默認(rèn)是不可比較的(沒(méi)有實(shí)現(xiàn)Comparable協(xié)議),這就意味著我們不能直接使用==操作符來(lái)判斷兩個(gè)枚舉值是否相等,這種情況下,需要使用模式匹配:

創(chuàng)建一個(gè)枚舉類(lèi)型:

enum Result {
 case success
 case failure
}

初始化一個(gè)枚舉值:

let result = Result.success

使用模式匹配來(lái)判斷創(chuàng)建的枚舉值的值:

if case .success = result {
 print("Value of result is success.")
}

可選綁定

創(chuàng)建一個(gè)可選值:

let optionalInt: Int? = 1

使用可選綁定的方式進(jìn)行解包:

if let val = optionalInt {
 print("The value of optionalInt is (val)")
}
func handleGuard() {
 guard let val = optionalInt else {
 return
 }
 print("The value of optionalInt is (val)")
}
handleGuard()

可選綁定的另外一種模式,這也是可選綁定中最基礎(chǔ)的模式:

if case .some(let val) = optionalInt {
 print("The value of optionalInt is (val)")
}

還可以簡(jiǎn)化為:

if case let val? = optionalInt {
 print("The value of optionalInt is (val)")
}

循環(huán)中的模式匹配

問(wèn)題來(lái)了,if let 模式的可選綁定,只能實(shí)現(xiàn)一個(gè)可選值的綁定,如果我們需要匹配一個(gè)數(shù)組里邊的可選值怎么辦呢?這時(shí)候我們就不能使用 if let 的形式了,需要使用到 if case let 的形式

創(chuàng)建一個(gè)包含可選值的數(shù)組:

let values: [Int?] = [1, nil, 3, nil, 5, nil, 7, nil, 9, nil]

進(jìn)行遍歷:

for val in values {
 print("Value in values is (String(describing: val))")
}

或者:

var valuesIterator = values.makeIterator()
while let val = valuesIterator.next() {
 print("Value in values is (String(describing: val))")
}

我們得到了所有的值與可選值,如果我們需要過(guò)濾可選值,我們可以這樣做:

for val in values.compactMap({ $0 }) {
 print("Value in values is (val)")
}

這樣做,增加了時(shí)間復(fù)雜度,需要進(jìn)行兩次遍歷才能將數(shù)據(jù)過(guò)濾出來(lái)。我們可以使用模式匹配的方式來(lái)這樣做:

for case let val? in values {
 print("Value in values is (val)")
}

或者:

valuesIterator = values.makeIterator()
while let val = valuesIterator.next(), val != nil {
 print("Value in values is (String(describing: val))")
}

這樣就可以將 nil 值給過(guò)濾了,是不是很簡(jiǎn)單?還可以使用 for case 匹配枚舉值數(shù)組:

let results: [Result] = [.success, .failure]
for case .success in results {
 print("Values in results contains success.")
 break
}

對(duì)于復(fù)雜的枚舉類(lèi)型:

enum NetResource {
 case http(resource: String)
 case ftp(resource: String)
}

let nets: [NetResource] = [.http(resource: "https://www.baidu.com"), .http(resource: "https://www.apple.cn"), .ftp(resource: ftp://192.0.0.1)]

過(guò)濾 http 的值:

for case .http(let resource) in nets {
 print("HTTP resource (resource)")
}

for 循環(huán)使用 where 從句

除此之外,我們還可以在 for 循環(huán)后邊跟上一個(gè) where 從句來(lái)進(jìn)行模式匹配:

for notNilValue in values where notNilValue != nil {
 print("Not nil value: (String(describing: notNilValue!))")
}

查詢(xún)一個(gè)數(shù)組里邊所有能被3整除的數(shù):

let rangeValues = Array(0...999)
for threeDivideValue in rangeValues where threeDivideValue % 3 == 0 {
 print("Three devide value: (threeDivideValue)")
}

查詢(xún)所有含有3的數(shù):

for containsThree in rangeValues where String(containsThree).contains("3") {
 print("Value contains three: (containsThree)")
}

Switch 中的模式匹配

Switch 中的模式匹配也很常用,在 Switch 中合理地使用模式匹配可以為我們帶來(lái)很多好處,可以使我們的代碼更簡(jiǎn)潔,同時(shí)可以減少代碼量和增加開(kāi)發(fā)效率。

區(qū)間匹配

let value = 188

switch value {
case 0..<50:
 print("The value is in range [0, 50)")
case 50..<100:
 print("The value is in range [50, 100)")
case 100..<150:
 print("The value is in range [100, 150)")
case 150..<200:
 print("The value is in range [150, 200)")
case 200...:
 print("The value is in range [200, ")
default: break
}

// The value is in range [150, 200)

匹配元組類(lèi)型

創(chuàng)建一個(gè)元組類(lèi)型:

let tuples: (Int, String) = (httpCode: 404, status: "Not Found.")

進(jìn)行匹配:

switch tuples {
case (400..., let status):
 print("The http code is 40x, http status is (status)")
default: break
}

創(chuàng)建一個(gè)點(diǎn):

let somePoint = (1, 1)

進(jìn)行匹配:

switch somePoint {
case (0, 0):
 print("(somePoint) is at the origin")
case (_, 0):
 print("(somePoint) is on the x-axis")
case (0, _):
 print("(somePoint) is on the y-axis")
case (-2...2, -2...2):
 print("(somePoint) is inside the box")
default:
 print("(somePoint) is outside of the box")
}

如上,我們?cè)谄ヅ涞臅r(shí)候可以使用下劃線(xiàn) _ 對(duì)值進(jìn)行忽略:

switch tuples {
case (404, _):
 print("The http code is 404 not found.")
default: break
}

在 switch case 中使用 where 從句

在 case 中使用 where 從句可以使我們的模式匹配看起來(lái)更加精簡(jiǎn),使匹配的模式更加緊湊:

let yetAnotherPoint = (1, -1)
switch yetAnotherPoint {
case let (x, y) where x == y:
 print("((x), (y)) is on the line x == y")
case let (x, y) where x == -y:
 print("((x), (y)) is on the line x == -y")
case let (x, y):
 print("((x), (y)) is just some arbitrary point")
}

總結(jié)

Swift 中模式匹配的種類(lèi)

模式匹配可以說(shuō)是 Swift 中非常強(qiáng)大的一種編程模式,使用良好的模式匹配,可以幫助我們寫(xiě)出簡(jiǎn)介、優(yōu)雅的代碼,Swift 中的模式匹配包括以下種類(lèi):

  • 條件判斷:if, guard
  • 可選綁定:if let, guard let, while let ...
  • 循環(huán)體:for, while, repeat while
  • switch
  • do catch

什么時(shí)候使用 where 從句?

我們可以在前文的例子中看到,在很多進(jìn)行模式匹配的地方還使用了 where 從句,where 從句的作用就相當(dāng)于在模式匹配的基礎(chǔ)上在加上條件限制,使用 where 從句等價(jià)于:

for notNilValue in values {
 if notNilValue != nil {
  print("Not nil value: (String(describing: notNilValue!))")
 }
}

可以看出,使用 where 從句可以使我們的代碼更加簡(jiǎn)潔和易讀,什么時(shí)候使用 where ? 或者說(shuō)在哪里可以使用 where ? Swift 文檔中并沒(méi)有對(duì) where 的詳細(xì)使用進(jìn)行介紹,但是在實(shí)踐中發(fā)現(xiàn),where 可以使用在以下地方:

  • for 循環(huán)語(yǔ)句
  • switch 分支

而對(duì)于 if, guard 與 while ,我們不能在其后面添加 where 從句,因?yàn)樗麄儽旧砜梢赃M(jìn)行多個(gè)條件的組合. where 從句還有一個(gè)用法就是對(duì)泛型類(lèi)型進(jìn)行類(lèi)型約束,這在泛型的章節(jié)中會(huì)有介紹.

好了,以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)腳本之家的支持。

相關(guān)文章

  • Swift UIButton使用教程

    Swift UIButton使用教程

    這篇文章主要介紹了Swift UIButton的使用方法,幫助大家更好的理解和學(xué)習(xí)swift編程,感興趣的朋友可以了解下
    2020-09-09
  • Objective-C和Swift的轉(zhuǎn)換速查手冊(cè)(推薦)

    Objective-C和Swift的轉(zhuǎn)換速查手冊(cè)(推薦)

    這篇文章主要給大家介紹了關(guān)于Objective-C和Swift的轉(zhuǎn)換速查手冊(cè)的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),非常推薦給大家參考學(xué)習(xí)使用,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)不
    2018-06-06
  • Swift中的限定擴(kuò)展詳析

    Swift中的限定擴(kuò)展詳析

    擴(kuò)展就是向一個(gè)已有的類(lèi)、結(jié)構(gòu)體或枚舉類(lèi)型添加新功能。下面這篇文章主要給大家介紹了關(guān)于Swift中限定擴(kuò)展的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起看看吧。
    2018-03-03
  • swift指針及內(nèi)存管理內(nèi)存綁定實(shí)例詳解

    swift指針及內(nèi)存管理內(nèi)存綁定實(shí)例詳解

    這篇文章主要為大家介紹了swift指針及內(nèi)存管理內(nèi)存綁定實(shí)例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-11-11
  • RxSwift發(fā)送及訂閱 Subjects、Variables代碼示例

    RxSwift發(fā)送及訂閱 Subjects、Variables代碼示例

    這篇文章主要介紹了RxSwift發(fā)送及訂閱 Subjects、Variables代碼示例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-12-12
  • Swift與C語(yǔ)言指針結(jié)合使用實(shí)例

    Swift與C語(yǔ)言指針結(jié)合使用實(shí)例

    這篇文章主要介紹了Swift與C語(yǔ)言指針結(jié)合使用實(shí)例,本文講解了用以輸入/輸出的參數(shù)指針、作為數(shù)組使用的參數(shù)指針、用作字符串參數(shù)的指針、指針參數(shù)轉(zhuǎn)換的安全性等內(nèi)容,需要的朋友可以參考下
    2015-05-05
  • 關(guān)于swift的個(gè)人小結(jié)

    關(guān)于swift的個(gè)人小結(jié)

    本文是個(gè)人對(duì)于目前學(xué)習(xí)swift的一些心得的匯總,這里分享給大家,希望大家能夠喜歡
    2016-12-12
  • Swift編程中實(shí)現(xiàn)希爾排序算法的代碼實(shí)例

    Swift編程中實(shí)現(xiàn)希爾排序算法的代碼實(shí)例

    希爾排序是對(duì)插入排序的一種改進(jìn)版本,算法本身并不穩(wěn)定,存在優(yōu)化空間,這里我們來(lái)講一下希爾排序的大體思路及Swift編程中實(shí)現(xiàn)希爾排序算法的代碼實(shí)例
    2016-07-07
  • Swift解決UITableView空數(shù)據(jù)視圖問(wèn)題的簡(jiǎn)單方法

    Swift解決UITableView空數(shù)據(jù)視圖問(wèn)題的簡(jiǎn)單方法

    這篇文章主要給大家介紹了關(guān)于Swift解決UITableView空數(shù)據(jù)視圖問(wèn)題的簡(jiǎn)單方法,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用swift具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2018-10-10
  • Swift實(shí)現(xiàn)多個(gè)TableView側(cè)滑與切換效果

    Swift實(shí)現(xiàn)多個(gè)TableView側(cè)滑與切換效果

    這篇文章主要為大家詳細(xì)介紹了Swift實(shí)現(xiàn)多個(gè)TableView側(cè)滑與切換效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-11-11

最新評(píng)論