Answers for "kotlin break foreach"

2

break continue kotlin

-------------------------------------------------------------------------------------------------------------------------------
(break,countinue) -------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------- 
    "same as java"

        @countinue example
            # var myArray = Array<Int>(5) {0}
            # myArray[3] = 32
            # 
            # for (i in myArray){
            #     if (i == 32)
            #         continue
            #     else
            #         println(i)
            # }

        @break example
            # var myArray = Array<Int>(5) {0}
            # myArray[3] = 32
            # 
            # for (i in myArray){
            #     if (i == 32)
            #         break
            #     else
            #         println(i)
            # }
Posted by: Guest on November-13-2021
0

kotlin labels

fun onlyPrimes() {
    // You can use labels to specify which loop will skip current iteration

    outer@for (num in 2..100) {
        for (check in 2..(num / 2)) {
            if (num % check == 0) {
                continue@outer
            }
        }
        println(num)
    }
}
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language