“pour boucle en kotlin avec index” Réponses codées

Pour 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

pour boucle en kotlin avec index

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

boucle kotlin

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

Réponses similaires à “pour boucle en kotlin avec index”

Questions similaires à “pour boucle en kotlin avec index”

Plus de réponses similaires à “pour boucle en kotlin avec index” dans Kotlin

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code