- 在开发中经常会需要循环
- 常见的循环有 : for/while/do while
- 这里我们只介绍for/while, 因为for/while最常见
for循环的写法
最常规的写法
区间for循环
1.1> for循环的区间写法
for i in 0..<10 {
print(i)
}
for i in 0...10 {
print(i)
}
- 1.2> for循环的
特殊写法
- 在swift中, 如果一个标识符不需要使用, 可以使用_来代替
for _ in 0...9 {
print("hello world")
}