Kotlin continue语句

Kotlin的continue语句用于重复循环。 它继续当前程序流并在指定条件下跳过剩余代码。

嵌套循环中的continue语句仅影响内部循环。

示例

for(..){  
       // for中的if语句上部分主体
       if(checkCondition){  
           continue  
       }  
    //for中的if语句下部分主体
}

在上面的例子中,for循环重复循环,if条件执行继续。 continue语句重复循环而不执行if条件的下面代码。

Kotlin continue示例

fun main(args: Array<String>) {
    for (i in 1..3) {
        println("i = $i")
        if (j == 2) {
            continue
        }
        println("this is below if")
    }
}

执行上面示例代码,得到以下结果 -

i = 1
this is below if
i = 2
i = 3
this is below if

Kotlin标记continue表达式

标记是标识符的形式,后跟@符号,例如abc@test@。 要将表达式作为标签,只需在表达式前面添加一个标签。

标记为continue表达式,在Kotlin中用于重复特定的循环(标记的循环)。 通过使用带有@符号后跟标签名称的continue表达式(continue@labelname)来完成的。

Kotlin标记为continue的示例

fun main(args: Array<String>) {
    labelname@ for (i in 1..3) {
        for (j in 1..3) {
            println("i = $i and j = $j")
            if (i == 2) {
                continue@labelname
            }
            println("this is below if")
        }
    }
}

执行上面示例代码,得到以下结果 -

i = 1 and j = 1
this is below if
i = 1 and j = 2
this is below if
i = 1 and j = 3
this is below if
i = 2 and j = 1
i = 3 and j = 1
this is below if
i = 3 and j = 2
this is below if
i = 3 and j = 3
this is below if

上一篇:Kotlin返回和跳跃

下一篇:Kotlin函数

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程