标签:
1 let coordinate = (1,1) 2 switch coordinate 3 { 4 case(0,0): 5 print("It‘s origin!") 6 case(_,0): 7 print("(\(coordinate.0),0) is on the x-axis") 8 case(0,_): 9 print("\(coordinate.1) in on the y-axis") 10 default: 11 print("\(coordinate.0),\(coordinate.1) is just an ordinary coordinate") 12 }
字符串插值,是指将在字符串中插入某一个属性或值,在swift中使用"\()"括号中加上属性便可以实现。
问:Swift改版后case语句中不能使用区间运算符了吗?
标签:
原文地址:http://www.cnblogs.com/superorangecc/p/5190928.html