本文介绍了用于早期退出循环的功能代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我怎样才能重构这个代码的功能风格(scala惯用)
How can I refactor this code in functional style (scala idiomatic)
def findFirst[T](objects: List[T]):T = {
for (obj <- objects) {
if (expensiveFunc(obj) != null) return obj
}
null.asInstanceOf[T]
}
推荐答案
find
方法可以,除了它返回 Option
。因此,如果您想要这种确切的行为,您可以添加对 Option.orNull
的调用,如下所示:
This is almost exactly what the find
method does, except that it returns an Option
. So if you want this exact behavior, you can add a call to Option.orNull
, like this:
objects.find(expensiveFunc).orNull
这篇关于用于早期退出循环的功能代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!