iterator
所在位置是kotlin.collections.iterator
,其相关用法介绍如下。
用法一
返回给定的迭代器本身。这允许在for
循环中使用迭代器的实例。
例子:
import java.util.*
fun main(args: Array<String>) {
//sampleStart
val mutableList = mutableListOf(1, 2, 3)
val mutableIterator = mutableList.iterator()
// iterator() extension is called here
for (e in mutableIterator) {
if (e % 2 == 0) {
// we can remove items from the iterator without getting ConcurrentModificationException
// because it's the same iterator that is iterated with for loop
mutableIterator.remove()
}
println("The element is $e")
}
//sampleEnd
}
输出:
The element is 1 The element is 2 The element is 3
用法二
例子:
import kotlin.test.*
import java.util.*
fun main(args: Array<String>) {
//sampleStart
val map = mapOf("beverage" to 2.7, "meal" to 12.4, "dessert" to 5.8)
for ((key, value) in map) {
println("$key - $value") // prints: beverage - 2.7
// prints: meal - 12.4
// prints: dessert - 5.8
}
//sampleEnd
}
输出:
beverage - 2.7 meal - 12.4 dessert - 5.8
用法三
@JvmName("mutableIterator") operator fun <K, V> MutableMap<K, V>.iterator(): MutableIterator<MutableEntry<K, V>>
在 MutableMap 中的可变条目上返回 MutableIterator。
相关用法
- Kotlin ifBlank用法及代码示例
- Kotlin indexOf用法及代码示例
- Kotlin isEmpty用法及代码示例
- Kotlin isNullOrBlank用法及代码示例
- Kotlin isNotBlank用法及代码示例
- Kotlin isJavaIdentifierStart用法及代码示例
- Kotlin isNullOrEmpty用法及代码示例
- Kotlin isJavaIdentifierPart用法及代码示例
- Kotlin ifEmpty用法及代码示例
- Kotlin isNotEmpty用法及代码示例
- Kotlin indices用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin Double.dec用法及代码示例
- Kotlin windowedSequence用法及代码示例
- Kotlin contentToString用法及代码示例
- Kotlin groupByTo用法及代码示例
- Kotlin commonPrefixWith用法及代码示例
- Kotlin MatchResult.Destructured用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.collections.iterator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。