-
使用break立即跳出当前的循环体。查看全部
-
使用fallthrough关键字,使得当前case执行完成后,继续执行下一个case。查看全部
-
不仅是元组,任何数据均看使用where条件。查看全部
-
case(_,let name) where name.hasSurfix("ddd"):查看全部
-
对于元组型值的判定,在case语句中,可对元组元素的值使用where语句写布尔表达式。查看全部
-
可在case中,将元组的值赋予一个常量: switch coordinate { case (let x,0): println("x is \(x)") } 上面的写法,使得y值为0的元组落入case,而其中的x坐标值赋予常量x。查看全部
-
在元组的元素内使用范围: switch coordinate { case (0...2,0): so something }查看全部
-
使用下划线_忽略元组的一个元素 switch coordinate { case (_,0): do something }查看全部
-
可对元组判断: switch coordinate { case (0,0) }查看全部
-
switch case可以对区间做判断,如 switch score case 0..<60查看全部
-
感谢有这么好的学习资源。查看全部
-
case "a","A":查看全部
-
switch condition{ case v1: exp1 case v2: exp2 default: defexp }查看全部
-
使用下划线_代替索引,可忽略索引 for _ in 0...12 {}查看全部
-
遍历字符串的字符 var str="fsfdsfds"; for c in str{}查看全部
举报
0/150
提交
取消