服务器之家

服务器之家 > 正文

swift where与匹配模式的实例详解

时间:2021-01-06 15:11     来源/作者:追到梦的魔术师

swift where匹配模式的实例详解

前言:

在众多 Swift 提供给 Objective-C 程序员使用的新特性中,有个特性把自己伪装成一个无聊的老头,但是却在如何优雅的解决“鞭尸金字塔“的问题上有着巨大的潜力。很显然我所说的这个特性就是 switch 语句, 对于很多 Objective-C 程序员来说,除了用在 Duff's Device 上比较有趣之外,switch 语句非常笨拙,与多个 if 语句相比,它几乎没有任何优势。

1、基本使用

Swift中switch语句case后面可以用where对条件进行限制

?
1
2
3
4
5
6
7
8
9
10
let point = (3,3)
switch point{
case let (x,y) where x == y:
  print("It's on the line x == y!")
case let (x,y) where x == -y:
  print("It's on the line x == -y!")
case let (x,y):
  print("It's just an ordinary point.")
  print("The point is ( \(x) , \(y) )")
}

2、使用if - case - where语句替代switch语句的使用方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let age = 19
switch age{
case 10...19:
  print("You're a teenager.")
default:
  print("You're not a teenager.")
}
 
 
if case 10...19 = age{
  print("You're a teenager.")
}
 
if case 10...19 = age where age >= 18{
  print("You're a teenager and in a college!")
}

注意:case条件必须放在”=”之前

swift 3.0以后if case 后面的”where”用”,”代替

3、if-case 与元组组合使用(元组解包使用)

?
1
2
3
4
let vector = (4,0)
if case ( let x , 0 ) = vector where x > 2 && x < 5{
  print("It's the vector!")
}

4、case - where 与循环组合使用

?
1
2
3
4
5
6
7
8
9
for i in 1...100{
  if i%3 == 0{
    print(i)
  }
}
 
for case let i in 1...100 where i % 3 == 0{
  print(i)
}

使用case限制条件可以大大减少代码量,使用起来非常方便,是swift语言的一大特色,好好掌握可以写出很优美的简洁的代码

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://blog.csdn.net/u012903898/article/details/52820404

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部