“Kotlin -Schleife bis” 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

Kotlin -Schleife bis

 for(i in 0 until a.size) {
       println(a[i]) /* iterates entire list */
    }
Smoggy Snail

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

Kotlin -Schleife bis

for (i in 1 until 10) {      
    print(i)
}
Smoggy Snail

während Loop Kotlin

fun displayForLoop() {
        for (i in 1..5)
            println(i)
    }
Powerful Partridge

während Loop Kotlin

var i = 1
while (i < 5) { 	// while loop
	println(i)
	i++
}					

var i = 1
do { 				// do-while loop
	println(i)
	i++
} while (i < 5)	
Powerful Partridge

Ähnliche Antworten wie “Kotlin -Schleife bis”

Fragen ähnlich wie “Kotlin -Schleife bis”

Weitere verwandte Antworten zu “Kotlin -Schleife bis” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen