jasnv.blogg.se

Kotlin loop range
Kotlin loop range




kotlin loop range

Println("This developer with number $i rocks: $")įor ((index, value) in names. In this guide, we will learn how to use for loop.

kotlin loop range

The in keyword can also be used to check if a value is in a given range!Īnd if you need an index inside your loop, Kotlin allows you to do this in several ways: The for loop in Kotlin is used to iterate or cycle though the elements of array, ranges, collections etc. This syntax can be found in many recent languages, like Swift, for example… The for loop is now used in the form of in. ("This developer rocks: " + name) Įn Kotlin, celle-ci est d’ailleurs devenue beaucoup plus lisible : val names = listOf("Jake Wharton", "Joe Birch", "Robert Martin") Anyone? Well, that’s to be expected! We have all used this type of loop at least once: List names = Arrays.asList("Jake Wharton", "Joe Birch", "Robert Martin") For Once…Īnyone who has never used the for loop in Java, please stand up. Since Kotlin doesn’t bring any special improvement to this way of looping, we’ll skip it.

kotlin loop range

In Kotlin, we have exactly the same thing: // While You probably know the while loop in Java, used to go through a list as long as the condition remains unmet. So this chapter shouldn’t confuse you too much! As Far As Possible If there’s something that hasn’t really changed in Kotlin, it’s the way we loop.






Kotlin loop range