kotlin for循环写法
时间: 2023-07-04 07:30:52 浏览: 107
Kotlin - Learn Kotlin for Android Development
Kotlin中的for循环有两种写法,一种是传统的for循环,另一种是使用forEach循环。
传统的for循环写法如下:
```
for (i in 0 until 10) {
// 循环体
}
```
其中,`0 until 10`表示从0开始循环到10之前(即0~9)。
使用forEach循环写法如下:
```
val list = listOf("apple", "banana", "orange")
list.forEach { fruit ->
// 循环体
}
```
其中,`list`是要循环的集合,`{ fruit -> //循环体 }`中的`fruit`是集合中的元素,在循环体中可以使用它进行操作。
阅读全文