gpt4 book ai didi

loops - Kotlin 中 `break` 中的 `continue` 和 `forEach`

转载 作者:IT老高 更新时间:2023-10-28 13:26:07 25 4
gpt4 key购买 nike

Kotlin 有非常好的迭代函数,例如 forEachrepeat,但我无法使 breakcontinue 运算符(operator)使用它们(本地和非本地):

repeat(5) {
break
}

(1..5).forEach {
continue@forEach
}

我们的目标是用尽可能接近的函数语法来模拟通常的循环。在某些旧版本的 Kotlin 中绝对可以,但我很难重现语法。

问题可能是标签 (M12) 的错误,但我认为第一个示例应该可以正常工作。

在我看来,我在某个地方读到了一个特殊的技巧/注释,但我找不到关于这个主题的任何引用资料。可能如下所示:

public inline fun repeat(times: Int, @loop body: (Int) -> Unit) {
for (index in 0..times - 1) {
body(index)
}
}

最佳答案

这将打印 1 到 5。return@forEach 的作用类似于 Java 中的关键字 continue,这意味着在这种情况下,它仍然执行每个循环,但会跳到如果值大于 5,则进行下一次迭代。

fun main(args: Array<String>) {
val nums = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
nums.forEach {
if (it > 5) return@forEach
println(it)
}
}

这将打印 1 到 10,但会跳过 5。

fun main(args: Array<String>) {
val nums = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
nums.forEach {
if (it == 5) return@forEach
println(it)
}
}

这将打印 1 到 4,并在达到 5 时中断。

fun main(args: Array<String>) {
val nums = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

run breaking@ {
nums.forEach {
if (it == 5) return@breaking
println(it)
}
}
}

Link to code snippet from ashuges .

关于loops - Kotlin 中 `break` 中的 `continue` 和 `forEach`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32540947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com