在Objective-C中,我们知道有三种控制流语法,比如if-else,Switch-case等等,在Swift当中也是可用的,但Swift却在该基础上增加了某些特性,下面让我们来看看.
1.if-else语句
if let oldMan: Int = 50,youngerMan: Int = 18 where oldMan > youngerMan {
print("odlMan > youngerMan")
} else {
print("错误判断")
}
PS: where在if里面是作为一个附判断语句,附判断里的条件如果为true就会走为true的代码块,否则就会走else.
2.Switch-case语句
let age = 30
switch age {
case 30 where age >= 0:
print("age = \(age)")
default:
print("错误年龄")
}
在这里我们一样可以像if-else语句一样,在判断的条件上增加where关键字,这样子就可以节省在case里面再做判断.
这次我们就到这里,下次继续