本文主要是介绍kotlin之foreach跳出循环,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.创建函数跳出循环。
fun breakTest() {(0..10).forEachIndexed { index, i ->Log.d("test start index=$index,i=$i")if (index >= 7) {return}Log.d("test end index=$index,i=$i")}}
2.通过run语句,将会在if判断语句为true的时候跳出run代码块
run outSide@{(0..10).forEachIndexed { index, i ->Log.d("test start index=$index,i=$i")if (index >= 7) {return@outSide}Log.d("test end index=$index,i=$i")}
}
3.类似于continue,如果if语句为true,将会继续下一轮的forEach代码块。
(0..10).forEachIndexed { index, i ->Log.d("test start index=$index,i=$i")if (index >= 7) {return@forEachIndexed}Log.d("test end index=$index,i=$i")
}
4.执行结果如下:
这篇关于kotlin之foreach跳出循环的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!