Scala:没有continue,break怎么办?
Posted yy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scala:没有continue,break怎么办?相关的知识,希望对你有一定的参考价值。
scala自身是没有continue,break这两个语法关键词的。
但是实际上我们还是很希望有这两个语法,那么我们是否可以自己实现呢?
- 从官网上搜索,我们可以找到一下关于break的类相关资料:
Breaks extends AnyRef
以上是关于Scala:没有continue,break怎么办?的主要内容,如果未能解决你的问题,请参考以下文章
2021年大数据常用语言Scala:基础语法学习 break和continue
它的输出背后的逻辑是啥?它为 Break 和 continue 提供相同的输出
A class that can be instantiated for the break control abstraction. Example usage:
Calls to break from one instantiation of
Breaks
will never target breakable objects of some other instantiation.输出结果
Hello World
hello1
hello2
hello3
hello4
hello5
the index is :6
hello7
hello8
hello9
hello10
Process finished with exit code 0
或者
输出结果
Hello World
hello1
hello2
hello3
hello4
hello5
the index is :6
参考资料:scala break & continue http://www.cnblogs.com/rollenholt/p/4119105.html