Swift语法基础:18 - Swift的元组, 绑定值, Where

前端之家收集整理的这篇文章主要介绍了Swift语法基础:18 - Swift的元组, 绑定值, Where前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

好了,下面让我们继续往下看吧:


1.元组

你可以使用元组在同一个 switch 语句中测试多个值。元组中的元素可以是值,也可以是范围。另外,使用下划线( _ )来匹配所有可能的值。

  1. let somePoint = (1, 1)
  2. switch somePoint {
  3. case (0, 0):
  4. println("(0,0)is at the origin")
  5. case (_, 0):
  6. println("(\(somePoint.0),0) is on the x-axis")
  7. case (0,_):
  8. println("0,\(somePoint.1) is on the y-axis")
  9. case (-2...2, -2...2):
  10. println("(\(somePoint.0),\(somePoint.1)) is inside the Box")
  11. default:
  12. println("(\(somePoint.0),\(somePoint.1)) is outside of the Box")
  13. }
  14. //打印出来的结果: (1,1) is inside the Box

2.绑定值

case 块的模式允许将匹配的值绑定到一个临时的常量或变量,这些常量或变量在该 case 块 里就可以被引用了——这种行为被称为值绑定。

  1. let anotherPoint = (2,0)
  2.  
  3. switch anotherPoint {
  4. case (let x,0):
  5. println("on the x-axis with an x value of \(x)")
  6. case (0,let y):
  7. println("on the y-axis with a y value of \(y)")
  8. case let (x,y):
  9. println("somewhere else at (\(x),\(y))")
  10. }
  11. // 打印出来的结果: on the x-axis with an x value of 2

3.Where

case 块的模式可以使用 where 语句来判断额外的条件。当且仅当 where 语句的条件为真时,匹配到的 case 块才会被执行。

  1. let yetAnotherPoint = (1,-1)
  2.  
  3. switch yetAnotherPoint {
  4. case let (x,y) where x == y:
  5. println("(\(x),\(y)) is on the line x == y")
  6.  
  7. case let (x,y) where x == -y:
  8. println("(\(x),\(y)) is on the line x == -y")
  9.  
  10. case let (x,y):
  11. println("(\(x),\(y)) is just some arbitrary point")
  12. }
  13. // 打印出来的结果: (1,-1) is on the line x == -y

好了,这次就讲到这里,下次我们继续~

猜你在找的Swift相关文章