kotlin forEach循环return/break
fun main(args: Array<String>) {
var a = mutableListOf("0", "1", "2", "3", "4")
var b = mutableListOf<String>()
a.forEachIndexed { index, s ->
if (index > 2) {
return@forEachIndexed
}
b.add(s)
}
println(b)
b.clear()
a.forEachIndexed mybreak@{ index, s ->
if (index > 3) {
return@mybreak
}
b.add(s)
}
println(b)
}
文章来源地址https://www.toymoban.com/news/detail-562911.html
[0, 1, 2]
[0, 1, 2, 3]
kotlin forEachIndexed arrayListOf<String>_zhangphil的博客-CSDN博客Python for循环中的zip_python zip函数用于for循环_zhangphil的博客-CSDN博客。https://blog.csdn.net/zhangphil/article/details/131003571文章来源:https://www.toymoban.com/news/detail-562911.html
到了这里,关于kotlin forEach循环return/break的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!