我的代码中有一个可变变量,我希望通过使用一些聚合函数来避免。不幸的是,我无法找到以下伪代码的解决方案。
def someMethods(someArgs) = {
var someMutableVariable = factory
val resources = getResourcesForVariable(someMutableVariable)
resources foreach (resource => {
val localTempVariable = getSomeOtherVariable(resource)
someMutableVariable = chooseBetteVariable(someMutableVariable, localTempVariable)
})
someMutableVariable
}
我的代码中有两个位置,我需要构建一些变量,然后在循环中将它与其他可能性进行比较,如果更糟,则用这种新的可能性替换它。
答案 0 :(得分:5)
如果resources
变量支持它:
//This is the "currently best" and "next" in list being folded over
resources.foldLeft(factory)((cur, next) =>
val local = getSomeOther(next)
//Since this function returns the "best" between the two, you're solid
chooseBetter(local, cur)
}
然后你不会有可变的状态。