今天在慕课网上学习了由刘雨波老师讲解的教程《玩转Swift2.0(第一季)》,对于swift的基础知识有了一定的了解,下面我把今天学习的感悟写一下。
1.基本数据类型
- 1.1 在Swift中,表示无符号整型是UInt,其中还有UInt8、UInt16等,查看每种类型的存储值范围,可以调用其max、min方法,例如:
Int.max,Int.min
- 1.2 在Swift中,为了方便阅读数值很大的整型,或者小数位很多的浮点型,我们可以这样写
let largeInt = 100_0000
let largeFloat = 8_0000.000_000_1
Swift对下划线_是不做处理的
2.运算符
- 2.1 取余%,不仅适用于整型,还适用于浮点型,例如
let u = 2.5
let v = 1.2
let random = u%v
- 2.2 区间运算符
前后都是闭: [a,b] 等价于a...b
前闭后开: [a,b) 等价于a..<b
3.switch
Swift中的switch中的case,默认就是有break的,要是希望条件满足一个case还要继续向下执行,需要添加关键字fallthrough
,例如:
let point4 = (2, 1)
switch point4 {
case (_, 1):
print("true")
fallthrough
case (1, _):
print("true")
default:
() // 小括号,表示空语句
}
switch与元组结合使用,可以写出许多优美的代码,简化许多逻辑
4.控制转移关键字:break,coutinue,fallthrough,return,throw
- 4.1 可以为for添加名字,用于快速结束这个for循环,例如:
forward1:
for index5 in 0..<100 {
for index6 in 50..<100 {
if index5 * 3 == index6 {
print("\(index5) * 3 = \(index6)")
break forward1
}
}
}
5.where:用于限制模式
6.关键guard,一般用于函数中,与return结合使用,guard确保一个逻辑为真的情况,注重核心逻辑操作.简化边界条件的判断.例如:
func buy(money: Int, price: Int, capacity: Int, volume: Int) {
guard money > price else {
print("money is not enough")
return
}
guard capacity > volume else {
return
}
print("I can buy the good")
}
以上就是我的心得体会啦。
刘雨波Demo地址:
Play-with-Swift-2
网友评论