“Für Schleife in Kotlin mit Index” Code-Antworten

für Loop Kotlin

val array = arrayOf(1, 3, 9)
for (item in array) {
    //loops items
}
for (index in 0..array.size - 1) {
	//loops all indices
}
for (index in 0 untill array.size) {
    //loops all indices
}
for (index in array.indices) {
    //loops all indices (performs just as well as two examples above)
}
Promofo

Für Schleife in Kotlin mit Index

collection.forEachIndexed { index, element ->
    // ...
}
just-saved-you-a-stackoverflow-visit

Kotlin -Schleife

val school = arrayOf("shark", "salmon", "minnow")
for (element in school) {
    print(element + " ")
}
-> shark salmon minnow

for ((index, element) in school.withIndex()) {
    println("Item at $index is $element\n")
}
-> Item at 0 is shark
Item at 1 is salmon
Item at 2 is minnow
Super Stoat

Ähnliche Antworten wie “Für Schleife in Kotlin mit Index”

Fragen ähnlich wie “Für Schleife in Kotlin mit Index”

Weitere verwandte Antworten zu “Für Schleife in Kotlin mit Index” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen